Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / FullTrustAssembliesSection.cs / 1305376 / FullTrustAssembliesSection.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 FullTrustAssembliesSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propFullTrustAssemblies = new ConfigurationProperty(null, typeof(FullTrustAssemblyCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static FullTrustAssembliesSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propFullTrustAssemblies); } public FullTrustAssembliesSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection=true)] public FullTrustAssemblyCollection FullTrustAssemblies { get { return GetFullTrustAssembliesCollection(); } } private FullTrustAssemblyCollection GetFullTrustAssembliesCollection() { return (FullTrustAssemblyCollection)base[_propFullTrustAssemblies]; } } } // 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
- ZipPackagePart.cs
- SecurityDescriptor.cs
- XPathParser.cs
- SafeCloseHandleCritical.cs
- ActivityMetadata.cs
- TextMessageEncoder.cs
- AdornerHitTestResult.cs
- SqlDataSourceCache.cs
- DetailsViewDeletedEventArgs.cs
- cryptoapiTransform.cs
- DependencyPropertyDescriptor.cs
- Token.cs
- XNodeValidator.cs
- TreeWalker.cs
- ClientRolePrincipal.cs
- typedescriptorpermission.cs
- FormViewDeleteEventArgs.cs
- Int16KeyFrameCollection.cs
- EntityCommand.cs
- DesignColumn.cs
- WSHttpSecurityElement.cs
- TypeReference.cs
- SamlAuthorizationDecisionClaimResource.cs
- ColorAnimationBase.cs
- TimeSpanStorage.cs
- QuotaThrottle.cs
- DataGridBoolColumn.cs
- _LocalDataStore.cs
- SchemaEntity.cs
- WebPartZoneBaseDesigner.cs
- SerializerWriterEventHandlers.cs
- CompoundFileStreamReference.cs
- DataSetMappper.cs
- WorkflowHostingResponseContext.cs
- ScriptingRoleServiceSection.cs
- _HeaderInfo.cs
- SqlClientFactory.cs
- RefreshEventArgs.cs
- SkipStoryboardToFill.cs
- DictionaryContent.cs
- ViewKeyConstraint.cs
- InputLangChangeEvent.cs
- cookie.cs
- DrawListViewItemEventArgs.cs
- sqlpipe.cs
- AsyncParams.cs
- ParameterDataSourceExpression.cs
- SevenBitStream.cs
- DataTransferEventArgs.cs
- TaiwanCalendar.cs
- Logging.cs
- WrapPanel.cs
- HashHelpers.cs
- ListViewDeleteEventArgs.cs
- Canvas.cs
- StringDictionaryEditor.cs
- PersonalizableAttribute.cs
- Point4DConverter.cs
- DbProviderManifest.cs
- XmlElementCollection.cs
- _FixedSizeReader.cs
- _PooledStream.cs
- HttpCachePolicyElement.cs
- MD5Cng.cs
- XamlPoint3DCollectionSerializer.cs
- SessionStateModule.cs
- SqlHelper.cs
- DataGridViewCellLinkedList.cs
- XamlToRtfParser.cs
- SystemTcpStatistics.cs
- UIHelper.cs
- NavigationWindow.cs
- XmlComment.cs
- HTMLTagNameToTypeMapper.cs
- CqlIdentifiers.cs
- EffectiveValueEntry.cs
- XmlSchemaExternal.cs
- HandleCollector.cs
- MetadataFile.cs
- RefreshEventArgs.cs
- ExpressionVisitorHelpers.cs
- WindowInteractionStateTracker.cs
- TransformedBitmap.cs
- WebPartConnectionsDisconnectVerb.cs
- RoutedEventConverter.cs
- TextRange.cs
- ACL.cs
- ApplicationSecurityInfo.cs
- XmlSerializerOperationFormatter.cs
- EntityType.cs
- counter.cs
- TemplateParser.cs
- StrokeNodeEnumerator.cs
- XmlUnspecifiedAttribute.cs
- RegexParser.cs
- UnsafeNativeMethods.cs
- Localizer.cs
- RuntimeTrackingProfile.cs
- HashCodeCombiner.cs
- Stylesheet.cs