1 write to _type
System.Configuration (1)
System\Configuration\ConfigurationProperty.cs (1)
188_type = type;
14 references to _type
System.Configuration (14)
System\Configuration\ConfigurationProperty.cs (14)
199if (!_validator.CanValidate(_type)) { 218bool canAssign = _type.IsAssignableFrom(value.GetType()); 243if ((defaultValue != null) && (defaultValue is string) && (_type != typeof(string))) { 253if (_type == typeof(string)) { 256else if (_type.IsValueType) { 257defaultValue = TypeUtil.CreateInstanceWithReflectionPermission(_type); 286_isConfigurationElementType = typeof(ConfigurationElement).IsAssignableFrom(_type); 296return _type; 396if (_type == typeof(bool)) { 426if (_type.IsEnum) { 427_converter = new GenericEnumConverter(_type); 429else if (!_type.IsSubclassOf(typeof(ConfigurationElement))) { 430_converter = TypeDescriptor.GetConverter(_type); 435throw new ConfigurationErrorsException(SR.GetString(SR.No_converter, _name, _type.Name));