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

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

public SettingsProperty ( string name, Type propertyType, SettingsProvider provider, bool isReadOnly, object defaultValue, SettingsSerializeAs serializeAs, SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing ) : System.Collections
name string
propertyType System.Type
provider SettingsProvider
isReadOnly bool
defaultValue object
serializeAs SettingsSerializeAs
attributes SettingsAttributeDictionary
throwOnErrorDeserializing bool
throwOnErrorSerializing bool
Результат System.Collections
       public SettingsProperty(string name, Type propertyType, SettingsProvider provider, 
                               bool isReadOnly, object defaultValue, SettingsSerializeAs serializeAs, 
                               SettingsAttributeDictionary attributes,
                               bool throwOnErrorDeserializing, bool throwOnErrorSerializing) 
       {
           _Name = name;
           _PropertyType = propertyType;
           _Provider = provider;
           _IsReadOnly = isReadOnly;
           _DefaultValue = defaultValue;
           _SerializeAs = serializeAs;
           _Attributes = attributes;
           _ThrowOnErrorDeserializing = throwOnErrorDeserializing;
           _ThrowOnErrorSerializing = throwOnErrorSerializing;
       }

Same methods

SettingsProperty::SettingsProperty ( SettingsProperty propertyToCopy ) : System.Collections
SettingsProperty::SettingsProperty ( string name ) : System.Collections
SettingsProperty