public ExtensibleNamingConventionTypeInspector(IExtensibleTypeInspector innerTypeDescriptor, INamingConvention namingConvention)
        {
            if (innerTypeDescriptor == null)
            {
                throw new ArgumentNullException(nameof(innerTypeDescriptor));
            }

            this.innerTypeDescriptor = innerTypeDescriptor;

            if (namingConvention == null)
            {
                throw new ArgumentNullException(nameof(namingConvention));
            }

            this.namingConvention = namingConvention;
        }
        public ExtensibleNamingConventionTypeInspector(IExtensibleTypeInspector innerTypeDescriptor, INamingConvention namingConvention)
        {
            if (innerTypeDescriptor == null)
            {
                throw new ArgumentNullException(nameof(innerTypeDescriptor));
            }

            this.innerTypeDescriptor = innerTypeDescriptor;

            if (namingConvention == null)
            {
                throw new ArgumentNullException(nameof(namingConvention));
            }

            this.namingConvention = namingConvention;
        }
 public ExtensibleYamlAttributesTypeInspector(IExtensibleTypeInspector innerTypeDescriptor)
 {
     this.innerTypeDescriptor = innerTypeDescriptor;
 }
Esempio n. 4
0
 public ExtensibleReadableAndWritablePropertiesTypeInspector(IExtensibleTypeInspector innerTypeDescriptor)
 {
     _innerTypeDescriptor = innerTypeDescriptor;
 }
 public ExtensibleReadableAndWritablePropertiesTypeInspector(IExtensibleTypeInspector innerTypeDescriptor)
 {
     _innerTypeDescriptor = innerTypeDescriptor;
 }
 public ExtensibleYamlAttributesTypeInspector(IExtensibleTypeInspector innerTypeDescriptor)
 {
     this.innerTypeDescriptor = innerTypeDescriptor;
 }