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
- TemplateBindingExtensionConverter.cs
- CommandManager.cs
- DataGridViewRowStateChangedEventArgs.cs
- XmlSigningNodeWriter.cs
- SecurityTokenResolver.cs
- AttributeQuery.cs
- DataGridRowsPresenter.cs
- TextEncodedRawTextWriter.cs
- WindowsSlider.cs
- DriveNotFoundException.cs
- NamespaceDecl.cs
- RequestSecurityToken.cs
- _ContextAwareResult.cs
- XmlStrings.cs
- RelationshipConverter.cs
- TracedNativeMethods.cs
- ScriptResourceAttribute.cs
- ADRole.cs
- TextMetrics.cs
- LocatorPartList.cs
- HttpException.cs
- TrustManagerPromptUI.cs
- TextTreeDeleteContentUndoUnit.cs
- Confirm.cs
- DebugHandleTracker.cs
- SafeProcessHandle.cs
- MultiPropertyDescriptorGridEntry.cs
- TdsParserStateObject.cs
- RelativeSource.cs
- AttributeSetAction.cs
- DataGridViewMethods.cs
- FtpRequestCacheValidator.cs
- streamingZipPartStream.cs
- ListControl.cs
- ComAdminWrapper.cs
- CookieParameter.cs
- QueryInterceptorAttribute.cs
- EpmCustomContentWriterNodeData.cs
- RequestContext.cs
- PageCodeDomTreeGenerator.cs
- TagPrefixAttribute.cs
- LinearKeyFrames.cs
- XmlSchemaAnyAttribute.cs
- NotCondition.cs
- RegexBoyerMoore.cs
- FixedSOMSemanticBox.cs
- CrossSiteScriptingValidation.cs
- View.cs
- PrintPreviewGraphics.cs
- InvalidCommandTreeException.cs
- EdmType.cs
- EntityDataSourceUtil.cs
- HtmlValidationSummaryAdapter.cs
- DecimalAnimationBase.cs
- Codec.cs
- DataGridParentRows.cs
- XmlWrappingReader.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ToolStripPanelRow.cs
- DataConnectionHelper.cs
- SchemaCompiler.cs
- RegexEditorDialog.cs
- SchemaEntity.cs
- GenerateScriptTypeAttribute.cs
- WebPartHelpVerb.cs
- DataRowCollection.cs
- RangeBaseAutomationPeer.cs
- MasterPageCodeDomTreeGenerator.cs
- UriTemplateTrieLocation.cs
- DictionaryEntry.cs
- DelimitedListTraceListener.cs
- SamlAuthorityBinding.cs
- LambdaCompiler.Expressions.cs
- ExceptionUtil.cs
- RoleGroupCollection.cs
- ipaddressinformationcollection.cs
- NotificationContext.cs
- FontUnitConverter.cs
- OpenFileDialog.cs
- Statements.cs
- PermissionRequestEvidence.cs
- IncrementalReadDecoders.cs
- JsonServiceDocumentSerializer.cs
- SchemaTypeEmitter.cs
- XmlSchemaObjectTable.cs
- DeliveryRequirementsAttribute.cs
- autovalidator.cs
- HtmlLink.cs
- DefaultSerializationProviderAttribute.cs
- DefaultWorkflowLoaderService.cs
- LinqDataSourceDisposeEventArgs.cs
- SelectionUIService.cs
- PerformanceCounterPermissionEntry.cs
- AppSettingsReader.cs
- QueryResponse.cs
- OracleColumn.cs
- MonitoringDescriptionAttribute.cs
- Vector3DAnimation.cs
- GeneralTransform3DGroup.cs
- TrackingMemoryStream.cs