Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / PartialTrustVisibleAssembliesSection.cs / 1305376 / PartialTrustVisibleAssembliesSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Security.Permissions; public sealed class PartialTrustVisibleAssembliesSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propPartialTrustVisibleAssemblies = new ConfigurationProperty(null, typeof(PartialTrustVisibleAssemblyCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static PartialTrustVisibleAssembliesSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propPartialTrustVisibleAssemblies); } public PartialTrustVisibleAssembliesSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection=true)] public PartialTrustVisibleAssemblyCollection PartialTrustVisibleAssemblies { get { return GetPartialTrustVisibleAssembliesCollection(); } } private PartialTrustVisibleAssemblyCollection GetPartialTrustVisibleAssembliesCollection() { return (PartialTrustVisibleAssemblyCollection)base[_propPartialTrustVisibleAssemblies]; } } } // 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
- VectorCollectionConverter.cs
- StrokeCollection2.cs
- StorageAssociationTypeMapping.cs
- AsyncResult.cs
- RenderingEventArgs.cs
- MarkupWriter.cs
- CellCreator.cs
- TextMarkerSource.cs
- PermissionSetTriple.cs
- StringResourceManager.cs
- PeerInvitationResponse.cs
- StorageInfo.cs
- ColorAnimationUsingKeyFrames.cs
- DBParameter.cs
- EmptyEnumerable.cs
- IntegerValidatorAttribute.cs
- SocketCache.cs
- XmlByteStreamReader.cs
- BitArray.cs
- XamlHostingConfiguration.cs
- BaseCodeDomTreeGenerator.cs
- EllipseGeometry.cs
- DefaultValueMapping.cs
- CursorConverter.cs
- XslCompiledTransform.cs
- ChangeNode.cs
- SelectionRangeConverter.cs
- SuppressMessageAttribute.cs
- ConstructorNeedsTagAttribute.cs
- BitmapEffectCollection.cs
- DynamicMethod.cs
- OracleParameterBinding.cs
- ObjectPersistData.cs
- ConnectionProviderAttribute.cs
- WebPartConnectionsEventArgs.cs
- TripleDESCryptoServiceProvider.cs
- FormsAuthenticationEventArgs.cs
- PageRanges.cs
- FigureParaClient.cs
- CombinedGeometry.cs
- DataSourceSelectArguments.cs
- MetadataCache.cs
- OleDbDataAdapter.cs
- TdsParser.cs
- CombinedGeometry.cs
- IODescriptionAttribute.cs
- DataViewSettingCollection.cs
- SafeFindHandle.cs
- SQLDoubleStorage.cs
- CustomValidator.cs
- DataList.cs
- EdmConstants.cs
- EntityDataSourceViewSchema.cs
- ConfigurationValidatorAttribute.cs
- AutomationPeer.cs
- AuthenticatingEventArgs.cs
- WebConfigurationHostFileChange.cs
- MouseButton.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- Timer.cs
- FrameDimension.cs
- LinearGradientBrush.cs
- Query.cs
- MailMessage.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- ReadWriteObjectLock.cs
- TraceSection.cs
- MsmqOutputMessage.cs
- InheritablePropertyChangeInfo.cs
- DLinqAssociationProvider.cs
- XamlStyleSerializer.cs
- CodeSnippetTypeMember.cs
- SecuritySessionFilter.cs
- MetadataItem.cs
- TypeUnloadedException.cs
- QilIterator.cs
- CurrencyWrapper.cs
- WorkflowRuntimeServiceElementCollection.cs
- Environment.cs
- EditorPartChrome.cs
- Variable.cs
- ConsoleTraceListener.cs
- ISFClipboardData.cs
- TreeView.cs
- TableRowCollection.cs
- QuadraticBezierSegment.cs
- DataSourceUtil.cs
- ToolStripSeparator.cs
- ConfigurationStrings.cs
- PeerPresenceInfo.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- IDQuery.cs
- DataGridGeneralPage.cs
- DataGridViewDataConnection.cs
- SafeNativeMethods.cs
- URLString.cs
- FixedSOMPageElement.cs
- BrowserInteropHelper.cs
- ChannelSinkStacks.cs
- DtdParser.cs