Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / SettingsProperty.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StringConverter.cs
- SqlInfoMessageEvent.cs
- XamlClipboardData.cs
- ExtensionFile.cs
- ColorTransformHelper.cs
- PlainXmlSerializer.cs
- PrinterResolution.cs
- SimplePropertyEntry.cs
- bidPrivateBase.cs
- PointLightBase.cs
- HtmlWindowCollection.cs
- TextSelection.cs
- ButtonDesigner.cs
- _Semaphore.cs
- TCEAdapterGenerator.cs
- Mutex.cs
- BaseTemplatedMobileComponentEditor.cs
- ToolStripItemRenderEventArgs.cs
- ExtensionSimplifierMarkupObject.cs
- MultiAsyncResult.cs
- DesignTimeTemplateParser.cs
- MemberAssignment.cs
- IPEndPoint.cs
- Variable.cs
- DataListCommandEventArgs.cs
- Activity.cs
- TextFormatterHost.cs
- X509RawDataKeyIdentifierClause.cs
- GenericTypeParameterBuilder.cs
- Size3D.cs
- MediaPlayerState.cs
- AQNBuilder.cs
- WindowsAuthenticationEventArgs.cs
- VoiceChangeEventArgs.cs
- SaveWorkflowAsyncResult.cs
- XmlSchemaAll.cs
- MenuItem.cs
- OptimizerPatterns.cs
- InvalidOleVariantTypeException.cs
- EdmRelationshipRoleAttribute.cs
- TextEditor.cs
- WindowsTitleBar.cs
- CheckableControlBaseAdapter.cs
- DbConnectionPoolCounters.cs
- FlowDocumentReaderAutomationPeer.cs
- Quad.cs
- SafeWaitHandle.cs
- DeploymentSectionCache.cs
- FlowDocumentPage.cs
- XmlUtilWriter.cs
- brushes.cs
- NoPersistHandle.cs
- WpfGeneratedKnownTypes.cs
- AsyncOperation.cs
- EllipticalNodeOperations.cs
- ProviderUtil.cs
- Zone.cs
- TableLayoutRowStyleCollection.cs
- XsltConvert.cs
- ChainOfDependencies.cs
- CompilerResults.cs
- InvalidComObjectException.cs
- MessageContractExporter.cs
- ProfilePropertyNameValidator.cs
- __ComObject.cs
- SmtpMail.cs
- ManifestResourceInfo.cs
- ComponentTray.cs
- DesignerMetadata.cs
- UpdatePanelTriggerCollection.cs
- XmlCollation.cs
- backend.cs
- RequestQueryProcessor.cs
- HttpModuleActionCollection.cs
- LocatorManager.cs
- UnsettableComboBox.cs
- TextClipboardData.cs
- TextRenderer.cs
- MatrixTransform3D.cs
- XmlSchemaAnnotated.cs
- EdmConstants.cs
- TemplatedAdorner.cs
- CodeIdentifiers.cs
- Int32Storage.cs
- GradientSpreadMethodValidation.cs
- TagMapInfo.cs
- CachedTypeface.cs
- SecurityKeyIdentifierClause.cs
- XmlSchemaInfo.cs
- SqlClientFactory.cs
- AvTraceFormat.cs
- RangeValuePatternIdentifiers.cs
- ProxyWebPartConnectionCollection.cs
- ListView.cs
- GeometryModel3D.cs
- ExeContext.cs
- StylusCaptureWithinProperty.cs
- ParentQuery.cs
- CustomCredentialPolicy.cs
- ConditionCollection.cs