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
- PointHitTestResult.cs
- AutomationElement.cs
- _TLSstream.cs
- MetadataImporter.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- WebPartEventArgs.cs
- BaseCollection.cs
- WhitespaceReader.cs
- CredentialCache.cs
- XsltException.cs
- HttpEncoder.cs
- DataError.cs
- DataGridPagingPage.cs
- NegotiateStream.cs
- Type.cs
- WebBrowser.cs
- BitmapImage.cs
- UpdateProgress.cs
- IdnElement.cs
- FormsAuthenticationConfiguration.cs
- ButtonRenderer.cs
- SqlInternalConnectionTds.cs
- FixedNode.cs
- BinaryObjectWriter.cs
- EditingCommands.cs
- TemplatedWizardStep.cs
- KeyBinding.cs
- EventDescriptor.cs
- ToolStripRenderEventArgs.cs
- PreviewPageInfo.cs
- MouseActionValueSerializer.cs
- TreeViewEvent.cs
- GridViewRow.cs
- PackageProperties.cs
- LinkButton.cs
- CommentAction.cs
- XmlUtil.cs
- DoubleCollection.cs
- SoapReflectionImporter.cs
- Queue.cs
- Exception.cs
- ExpressionConverter.cs
- CreateParams.cs
- TraceSwitch.cs
- TripleDES.cs
- LocalizableAttribute.cs
- HandleRef.cs
- SqlException.cs
- HtmlCalendarAdapter.cs
- UniqueConstraint.cs
- WebServiceClientProxyGenerator.cs
- XmlNotation.cs
- SecurityManager.cs
- TextRenderingModeValidation.cs
- Base64WriteStateInfo.cs
- Utils.cs
- ObjectViewQueryResultData.cs
- TextServicesCompartment.cs
- SiteMapSection.cs
- OutputCacheSection.cs
- XhtmlBasicLabelAdapter.cs
- RemoveStoryboard.cs
- FormatterServices.cs
- Point3DAnimationUsingKeyFrames.cs
- DecimalSumAggregationOperator.cs
- WorkflowCreationContext.cs
- BlobPersonalizationState.cs
- PackageDigitalSignature.cs
- MDIWindowDialog.cs
- ThemeInfoAttribute.cs
- RenderContext.cs
- AmbientLight.cs
- InheritanceRules.cs
- InstancePersistenceException.cs
- TablePattern.cs
- _LoggingObject.cs
- ContextBase.cs
- ObjectMaterializedEventArgs.cs
- ProfileInfo.cs
- SignatureToken.cs
- MLangCodePageEncoding.cs
- AspCompat.cs
- HwndStylusInputProvider.cs
- BackStopAuthenticationModule.cs
- FillRuleValidation.cs
- ClockController.cs
- TimeSpan.cs
- UriWriter.cs
- WinCategoryAttribute.cs
- CodeGeneratorOptions.cs
- Debug.cs
- GeometryConverter.cs
- Vector.cs
- Label.cs
- _IPv6Address.cs
- XPathSelfQuery.cs
- EmptyControlCollection.cs
- ObjectCloneHelper.cs
- ReachObjectContext.cs
- ClusterRegistryConfigurationProvider.cs