Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Sys / System / Configuration / SettingsProperty.cs / 1 / SettingsProperty.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; using System.Configuration.Provider; using System.Globalization; using System.IO; using System.Runtime.Serialization.Formatters.Binary; using System.Xml.Serialization; using System.ComponentModel; //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public class SettingsProperty { public virtual string Name { get { return _Name; } set { _Name = value; } } public virtual bool IsReadOnly { get { return _IsReadOnly; } set { _IsReadOnly = value; } } public virtual object DefaultValue { get { return _DefaultValue; } set { _DefaultValue = value; } } public virtual Type PropertyType { get { return _PropertyType; } set { _PropertyType = value; } } public virtual SettingsSerializeAs SerializeAs { get { return _SerializeAs; } set { _SerializeAs = value; } } public virtual SettingsProvider Provider { get { return _Provider; } set { _Provider = value; } } public virtual SettingsAttributeDictionary Attributes { get { return _Attributes; } } public bool ThrowOnErrorDeserializing { get { return _ThrowOnErrorDeserializing; } set { _ThrowOnErrorDeserializing = value; } } public bool ThrowOnErrorSerializing { get { return _ThrowOnErrorSerializing; } set { _ThrowOnErrorSerializing = value; } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public SettingsProperty(string name) { _Name = name; _Attributes = new SettingsAttributeDictionary(); } 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; } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public SettingsProperty(SettingsProperty propertyToCopy) { _Name = propertyToCopy.Name; _IsReadOnly = propertyToCopy.IsReadOnly; _DefaultValue = propertyToCopy.DefaultValue; _SerializeAs = propertyToCopy.SerializeAs; _Provider = propertyToCopy.Provider; _PropertyType = propertyToCopy.PropertyType; _ThrowOnErrorDeserializing = propertyToCopy.ThrowOnErrorDeserializing; _ThrowOnErrorSerializing = propertyToCopy.ThrowOnErrorSerializing; _Attributes = new SettingsAttributeDictionary(propertyToCopy.Attributes); } private string _Name; private bool _IsReadOnly; private object _DefaultValue; private SettingsSerializeAs _SerializeAs; private SettingsProvider _Provider; private SettingsAttributeDictionary _Attributes; private Type _PropertyType; private bool _ThrowOnErrorDeserializing; private bool _ThrowOnErrorSerializing; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; using System.Configuration.Provider; using System.Globalization; using System.IO; using System.Runtime.Serialization.Formatters.Binary; using System.Xml.Serialization; using System.ComponentModel; //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public class SettingsProperty { public virtual string Name { get { return _Name; } set { _Name = value; } } public virtual bool IsReadOnly { get { return _IsReadOnly; } set { _IsReadOnly = value; } } public virtual object DefaultValue { get { return _DefaultValue; } set { _DefaultValue = value; } } public virtual Type PropertyType { get { return _PropertyType; } set { _PropertyType = value; } } public virtual SettingsSerializeAs SerializeAs { get { return _SerializeAs; } set { _SerializeAs = value; } } public virtual SettingsProvider Provider { get { return _Provider; } set { _Provider = value; } } public virtual SettingsAttributeDictionary Attributes { get { return _Attributes; } } public bool ThrowOnErrorDeserializing { get { return _ThrowOnErrorDeserializing; } set { _ThrowOnErrorDeserializing = value; } } public bool ThrowOnErrorSerializing { get { return _ThrowOnErrorSerializing; } set { _ThrowOnErrorSerializing = value; } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public SettingsProperty(string name) { _Name = name; _Attributes = new SettingsAttributeDictionary(); } 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; } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public SettingsProperty(SettingsProperty propertyToCopy) { _Name = propertyToCopy.Name; _IsReadOnly = propertyToCopy.IsReadOnly; _DefaultValue = propertyToCopy.DefaultValue; _SerializeAs = propertyToCopy.SerializeAs; _Provider = propertyToCopy.Provider; _PropertyType = propertyToCopy.PropertyType; _ThrowOnErrorDeserializing = propertyToCopy.ThrowOnErrorDeserializing; _ThrowOnErrorSerializing = propertyToCopy.ThrowOnErrorSerializing; _Attributes = new SettingsAttributeDictionary(propertyToCopy.Attributes); } private string _Name; private bool _IsReadOnly; private object _DefaultValue; private SettingsSerializeAs _SerializeAs; private SettingsProvider _Provider; private SettingsAttributeDictionary _Attributes; private Type _PropertyType; private bool _ThrowOnErrorDeserializing; private bool _ThrowOnErrorSerializing; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TraceInternal.cs
- EmptyQuery.cs
- BrowserTree.cs
- LinqDataSourceInsertEventArgs.cs
- UriSectionReader.cs
- DescriptionAttribute.cs
- KnownTypeAttribute.cs
- Activator.cs
- DbgUtil.cs
- InputScopeAttribute.cs
- GridLength.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- SoapMessage.cs
- StringBlob.cs
- GroupDescription.cs
- XamlValidatingReader.cs
- InvokeBase.cs
- Transform.cs
- Brushes.cs
- SingleStorage.cs
- NotImplementedException.cs
- DataPagerFieldCollection.cs
- CmsUtils.cs
- HostExecutionContextManager.cs
- WebServiceMethodData.cs
- CodeMemberProperty.cs
- MonikerProxyAttribute.cs
- DesignBindingEditor.cs
- ScopelessEnumAttribute.cs
- CodeNamespaceImportCollection.cs
- NavigationEventArgs.cs
- CreateDataSourceDialog.cs
- GeometryHitTestParameters.cs
- BulletedList.cs
- NavigationCommands.cs
- TraceRecord.cs
- Stack.cs
- ArrayElementGridEntry.cs
- UnorderedHashRepartitionStream.cs
- DocumentGridPage.cs
- PathFigureCollection.cs
- CompareValidator.cs
- DoubleLink.cs
- TextParagraphCache.cs
- SrgsElementList.cs
- XmlMemberMapping.cs
- WebPartEditorCancelVerb.cs
- BookmarkEventArgs.cs
- clipboard.cs
- TypeConstant.cs
- ProjectionCamera.cs
- DataGridViewUtilities.cs
- ReadOnlyDataSourceView.cs
- EntityDataSourceContainerNameItem.cs
- PropertyTab.cs
- XmlCharType.cs
- XamlRtfConverter.cs
- PenLineCapValidation.cs
- FixedSOMElement.cs
- Timer.cs
- PropertyMappingExceptionEventArgs.cs
- HtmlUtf8RawTextWriter.cs
- OletxTransactionManager.cs
- CommonDialog.cs
- ReflectionTypeLoadException.cs
- UnaryNode.cs
- OdbcConnection.cs
- ErrorStyle.cs
- ThreadAbortException.cs
- MSG.cs
- HtmlContainerControl.cs
- RMEnrollmentPage2.cs
- DataViewManagerListItemTypeDescriptor.cs
- WorkflowShape.cs
- ActivityDesigner.cs
- GreenMethods.cs
- XsltConvert.cs
- HasCopySemanticsAttribute.cs
- ActionFrame.cs
- ExpandoObject.cs
- FontStretchConverter.cs
- NullableDoubleMinMaxAggregationOperator.cs
- safePerfProviderHandle.cs
- ColorAnimationUsingKeyFrames.cs
- ZipIORawDataFileBlock.cs
- ImageMapEventArgs.cs
- DesignerContextDescriptor.cs
- DateTimeOffsetConverter.cs
- HttpModuleCollection.cs
- RowTypeElement.cs
- WebPartCatalogAddVerb.cs
- NotImplementedException.cs
- OperatingSystemVersionCheck.cs
- PasswordBox.cs
- DefaultPrintController.cs
- DeploymentSection.cs
- ExpressionBuilder.cs
- SchemaCollectionCompiler.cs
- EntityTypeEmitter.cs
- Viewport3DAutomationPeer.cs