System.Configuration.ConfigurationProperty.ConfigurationProperty C# (CSharp) Метод

ConfigurationProperty() публичный Метод

public ConfigurationProperty ( String name, Type type, Object defaultValue, TypeConverter typeConverter, ConfigurationValidatorBase validator, ConfigurationPropertyOptions options, string description ) : System
name String
type System.Type
defaultValue Object
typeConverter System.ComponentModel.TypeConverter
validator ConfigurationValidatorBase
options ConfigurationPropertyOptions
description string
Результат System
        public ConfigurationProperty(String name,
                                     Type type,
                                     Object defaultValue,
                                     TypeConverter typeConverter,
                                     ConfigurationValidatorBase validator,
                                     ConfigurationPropertyOptions options,
                                     string description) {
            ConstructorInit(name, type, options, validator, typeConverter);

            SetDefaultValue(defaultValue);
        }

Same methods

ConfigurationProperty::ConfigurationProperty ( PropertyInfo info ) : System
ConfigurationProperty::ConfigurationProperty ( String name, Type type ) : System
ConfigurationProperty::ConfigurationProperty ( String name, Type type, Object defaultValue ) : System
ConfigurationProperty::ConfigurationProperty ( String name, Type type, Object defaultValue, ConfigurationPropertyOptions options ) : System
ConfigurationProperty::ConfigurationProperty ( String name, Type type, Object defaultValue, TypeConverter typeConverter, ConfigurationValidatorBase validator, ConfigurationPropertyOptions options ) : System