Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / ProtectedProviderSettings.cs / 1 / ProtectedProviderSettings.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Xml; using System.Globalization; public class ProtectedProviderSettings : ConfigurationElement { private ConfigurationPropertyCollection _properties; private readonly ConfigurationProperty _propProviders = new ConfigurationProperty(null, typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); public ProtectedProviderSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propProviders); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true, Options = ConfigurationPropertyOptions.IsDefaultCollection)] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } } } // 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.Xml; using System.Globalization; public class ProtectedProviderSettings : ConfigurationElement { private ConfigurationPropertyCollection _properties; private readonly ConfigurationProperty _propProviders = new ConfigurationProperty(null, typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); public ProtectedProviderSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propProviders); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true, Options = ConfigurationPropertyOptions.IsDefaultCollection)] public ProviderSettingsCollection Providers { get { return (ProviderSettingsCollection)base[_propProviders]; } } } } // 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
- OdbcConnectionString.cs
- ParameterCollection.cs
- ArraySet.cs
- SecurityKeyType.cs
- EmptyEnumerable.cs
- DetailsViewPageEventArgs.cs
- SchemaTableOptionalColumn.cs
- ThumbAutomationPeer.cs
- Rules.cs
- ColumnPropertiesGroup.cs
- TailPinnedEventArgs.cs
- InstanceOwnerException.cs
- COM2EnumConverter.cs
- PingReply.cs
- KeyTimeConverter.cs
- BidOverLoads.cs
- HijriCalendar.cs
- SqlServer2KCompatibilityCheck.cs
- SafeHandle.cs
- InputEventArgs.cs
- SessionPageStateSection.cs
- base64Transforms.cs
- BookmarkManager.cs
- InstanceCompleteException.cs
- ClientUriBehavior.cs
- ResourceDescriptionAttribute.cs
- BrowserTree.cs
- StringValueConverter.cs
- ConnectionPoolManager.cs
- ListViewInsertionMark.cs
- ImageMapEventArgs.cs
- userdatakeys.cs
- UserControlBuildProvider.cs
- AssemblyCollection.cs
- WebPartRestoreVerb.cs
- FacetDescriptionElement.cs
- ConfigurationHandlersInstallComponent.cs
- ComponentManagerBroker.cs
- GradientPanel.cs
- Geometry3D.cs
- FormViewActionList.cs
- ConsoleCancelEventArgs.cs
- ViewManager.cs
- PasswordDeriveBytes.cs
- InstancePersistence.cs
- SafeArrayRankMismatchException.cs
- RepeatButton.cs
- ChildrenQuery.cs
- Screen.cs
- TransportDefaults.cs
- ConnectionPointCookie.cs
- RenderTargetBitmap.cs
- DependencyStoreSurrogate.cs
- filewebresponse.cs
- SmuggledIUnknown.cs
- ParallelForEach.cs
- DataMemberConverter.cs
- TypeToken.cs
- StandardRuntimeEnumValidator.cs
- XmlAttributeCollection.cs
- FileDialogCustomPlace.cs
- TableItemStyle.cs
- OleDbConnection.cs
- EventSourceCreationData.cs
- AppManager.cs
- HttpCookie.cs
- SettingsProperty.cs
- FlowDocumentPageViewerAutomationPeer.cs
- HtmlCommandAdapter.cs
- SortQueryOperator.cs
- DataGridViewControlCollection.cs
- WebPartEventArgs.cs
- DockPattern.cs
- GlobalEventManager.cs
- ServicePoint.cs
- PropertyChangeTracker.cs
- UInt64Storage.cs
- OrderByBuilder.cs
- Transactions.cs
- DesignerToolboxInfo.cs
- bindurihelper.cs
- RangeValueProviderWrapper.cs
- ListControl.cs
- IntSecurity.cs
- WindowsStartMenu.cs
- AnnotationAuthorChangedEventArgs.cs
- BitmapDownload.cs
- OdbcConnectionFactory.cs
- DocumentXPathNavigator.cs
- SiteMapProvider.cs
- TextTreeUndo.cs
- Application.cs
- AsyncCompletedEventArgs.cs
- ConditionedDesigner.cs
- DataGridColumnEventArgs.cs
- PasswordPropertyTextAttribute.cs
- XmlNotation.cs
- EventArgs.cs
- Pen.cs
- SequenceFullException.cs