当前位置: 首页>>代码示例>>C#>>正文


C# IType.IsPrimaryType方法代码示例

本文整理汇总了C#中IType.IsPrimaryType方法的典型用法代码示例。如果您正苦于以下问题:C# IType.IsPrimaryType方法的具体用法?C# IType.IsPrimaryType怎么用?C# IType.IsPrimaryType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IType的用法示例。


在下文中一共展示了IType.IsPrimaryType方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: IsAllowedPrimitiveType

 public static bool IsAllowedPrimitiveType(IType type)
 {
     return !(type is DictionaryType || type is SequenceType || type.IsPrimaryType(KnownPrimaryType.Stream));
 }
开发者ID:jhancock93,项目名称:autorest,代码行数:4,代码来源:SyntheticType.cs

示例2: NeedsSpecialSerialization

 private bool NeedsSpecialSerialization(IType type)
 {
     var known = type as PrimaryType;
     return known != null &&
         type.IsPrimaryType(KnownPrimaryType.ByteArray) ||
         type is SequenceType;
 }
开发者ID:jhancock93,项目名称:autorest,代码行数:7,代码来源:ParameterModel.cs

示例3: isSpecial

 private bool isSpecial(IType type)
 {
     if (type.IsPrimaryType(KnownPrimaryType.DateTime) || 
         type.IsPrimaryType(KnownPrimaryType.Date) || 
         type.IsPrimaryType(KnownPrimaryType.DateTimeRfc1123) || 
         type.IsPrimaryType(KnownPrimaryType.ByteArray) || 
         type is CompositeType)
     {
         return true;
     }
     else if (type is SequenceType)
     {
         return isSpecial(((SequenceType)type).ElementType);
     }
     else if (type is DictionaryType)
     {
         return isSpecial(((DictionaryType)type).ValueType);
     }
     return false;
 }
开发者ID:Ranjana1996,项目名称:autorest,代码行数:20,代码来源:ModelTemplateModel.cs

示例4: GetDeserializationSettingsReference

        /// <summary>
        /// Returns deserialization settings reference.
        /// </summary>
        /// <param name="deserializationType"></param>
        /// <returns></returns>
        public string GetDeserializationSettingsReference(IType deserializationType)
        {
            SequenceType sequenceType = deserializationType as SequenceType;
            DictionaryType dictionaryType = deserializationType as DictionaryType;
            if (deserializationType.IsPrimaryType(KnownPrimaryType.Date) ||
                (sequenceType != null && sequenceType.ElementType is PrimaryType
                    && ((PrimaryType)sequenceType.ElementType).Type == KnownPrimaryType.Date) ||
                (dictionaryType != null && dictionaryType.ValueType is PrimaryType
                    && ((PrimaryType)dictionaryType.ValueType).Type == KnownPrimaryType.Date))
            {
                return "new DateJsonConverter()";
            }
            if (deserializationType.IsPrimaryType(KnownPrimaryType.Base64Url) ||
                (sequenceType != null && sequenceType.ElementType is PrimaryType
                    && ((PrimaryType)sequenceType.ElementType).Type == KnownPrimaryType.Base64Url) ||
                (dictionaryType != null && dictionaryType.ValueType is PrimaryType
                    && ((PrimaryType)dictionaryType.ValueType).Type == KnownPrimaryType.Base64Url))
            {
                return "new Base64UrlJsonConverter()";
            }

            return ClientReference + ".DeserializationSettings";
        }
开发者ID:jkonecki,项目名称:autorest,代码行数:28,代码来源:MethodTemplateModel.cs


注:本文中的IType.IsPrimaryType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。