Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / TagPrefixAttribute.cs / 1 / TagPrefixAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Security.Permissions; using System.Web.Util; [AttributeUsage(AttributeTargets.Assembly, AllowMultiple=true)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TagPrefixAttribute : Attribute { private string namespaceName; private string tagPrefix; public TagPrefixAttribute(string namespaceName, string tagPrefix) { if (String.IsNullOrEmpty(namespaceName)) { throw ExceptionUtil.ParameterNullOrEmpty("namespaceName"); } if (String.IsNullOrEmpty(tagPrefix)) { throw ExceptionUtil.ParameterNullOrEmpty("tagPrefix"); } this.namespaceName = namespaceName; this.tagPrefix = tagPrefix; } public string NamespaceName { get { return namespaceName; } } public string TagPrefix { get { return tagPrefix; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PtsHost.cs
- AudioFileOut.cs
- DescriptionAttribute.cs
- RMEnrollmentPage1.cs
- TrustExchangeException.cs
- SchemaNotation.cs
- SqlDataSourceDesigner.cs
- CompilationUtil.cs
- DataGridHyperlinkColumn.cs
- CodeAttributeArgument.cs
- ProfileService.cs
- X509Certificate.cs
- DataGridViewSelectedColumnCollection.cs
- DataContext.cs
- AuthenticationModuleElement.cs
- ExpressionPrefixAttribute.cs
- BevelBitmapEffect.cs
- RequestCacheEntry.cs
- FormsAuthenticationCredentials.cs
- DirectoryInfo.cs
- CompositeDataBoundControl.cs
- CssClassPropertyAttribute.cs
- PackageRelationship.cs
- FragmentQueryProcessor.cs
- httpserverutility.cs
- SBCSCodePageEncoding.cs
- SqlCacheDependency.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- StrongNameMembershipCondition.cs
- HashMembershipCondition.cs
- TextTreeUndo.cs
- SourceChangedEventArgs.cs
- StyleSelector.cs
- FontStretch.cs
- messageonlyhwndwrapper.cs
- EntityContainer.cs
- WCFServiceClientProxyGenerator.cs
- PageWrapper.cs
- ObjectKeyFrameCollection.cs
- ellipse.cs
- ManagementExtension.cs
- FontNamesConverter.cs
- SafeArrayTypeMismatchException.cs
- AddToCollection.cs
- IgnorePropertiesAttribute.cs
- ResourceProperty.cs
- State.cs
- WorkflowServiceHostFactory.cs
- _CacheStreams.cs
- Pair.cs
- HttpHandler.cs
- Timer.cs
- ADConnectionHelper.cs
- CalendarDesigner.cs
- SerializableAttribute.cs
- RoutedEventConverter.cs
- Size.cs
- DataControlReference.cs
- PersianCalendar.cs
- NativeObjectSecurity.cs
- Menu.cs
- BitmapDecoder.cs
- TabPanel.cs
- _HelperAsyncResults.cs
- FormsAuthenticationCredentials.cs
- XmlStringTable.cs
- ScriptControl.cs
- DbDataRecord.cs
- SqlInternalConnectionSmi.cs
- NamedPipeConnectionPoolSettingsElement.cs
- KerberosRequestorSecurityToken.cs
- ReplyChannel.cs
- TabOrder.cs
- BackgroundWorker.cs
- HtmlInputText.cs
- ZoneButton.cs
- PersonalizationAdministration.cs
- DbConnectionStringCommon.cs
- DataGridCommandEventArgs.cs
- Int32RectValueSerializer.cs
- XmlSchemaValidator.cs
- ReaderWriterLock.cs
- PeerMaintainer.cs
- Shape.cs
- ScriptRef.cs
- WebPartConnectionCollection.cs
- RangeContentEnumerator.cs
- OutputCacheProfileCollection.cs
- ExtenderProvidedPropertyAttribute.cs
- SamlAttributeStatement.cs
- SoapIgnoreAttribute.cs
- ClipboardProcessor.cs
- PackageDigitalSignature.cs
- BoundingRectTracker.cs
- AutomationProperty.cs
- SecureUICommand.cs
- XmlILOptimizerVisitor.cs
- WindowsTokenRoleProvider.cs
- SignatureDescription.cs
- PingReply.cs