Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / TagPrefixAttribute.cs / 1305376 / TagPrefixAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Web.Util; [AttributeUsage(AttributeTargets.Assembly, AllowMultiple=true)] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CurrentChangingEventManager.cs
- RoleService.cs
- PointAnimationUsingKeyFrames.cs
- Invariant.cs
- AppDomainProtocolHandler.cs
- DivideByZeroException.cs
- RuntimeIdentifierPropertyAttribute.cs
- QuotedPrintableStream.cs
- PipeException.cs
- EFAssociationProvider.cs
- ColumnHeader.cs
- RowSpanVector.cs
- DesignerCalendarAdapter.cs
- ipaddressinformationcollection.cs
- BasicCommandTreeVisitor.cs
- mediaeventargs.cs
- cookieexception.cs
- DetailsViewPageEventArgs.cs
- ProxyGenerationError.cs
- HtmlPanelAdapter.cs
- DtdParser.cs
- webeventbuffer.cs
- ContextStaticAttribute.cs
- CuspData.cs
- AccessorTable.cs
- InternalPermissions.cs
- AuthStoreRoleProvider.cs
- IpcServerChannel.cs
- DateTimeStorage.cs
- XamlTreeBuilderBamlRecordWriter.cs
- HtmlString.cs
- AlphabetConverter.cs
- DocumentNUp.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- Semaphore.cs
- DataViewManagerListItemTypeDescriptor.cs
- GroupByQueryOperator.cs
- WebPartUserCapability.cs
- StylusEditingBehavior.cs
- IODescriptionAttribute.cs
- MtomMessageEncodingBindingElement.cs
- DataGridViewAdvancedBorderStyle.cs
- ClusterSafeNativeMethods.cs
- DataFormats.cs
- XmlElement.cs
- DeviceContexts.cs
- ClientOptions.cs
- base64Transforms.cs
- QuerySetOp.cs
- FixedPageStructure.cs
- UpdateCommandGenerator.cs
- securitycriticaldataClass.cs
- ProfileInfo.cs
- ImageBrush.cs
- Crc32Helper.cs
- ResizeGrip.cs
- RequiredArgumentAttribute.cs
- PrePostDescendentsWalker.cs
- GcSettings.cs
- ProcessInfo.cs
- ScrollableControlDesigner.cs
- PhysicalOps.cs
- SqlStatistics.cs
- SqlCharStream.cs
- GroupQuery.cs
- SamlAttribute.cs
- Timeline.cs
- ElementAction.cs
- WebServiceData.cs
- FragmentNavigationEventArgs.cs
- BrowserDefinition.cs
- loginstatus.cs
- COM2TypeInfoProcessor.cs
- DataGridViewCellEventArgs.cs
- RecordConverter.cs
- MouseCaptureWithinProperty.cs
- Calendar.cs
- _Semaphore.cs
- TransactionContext.cs
- OdbcUtils.cs
- ToolStripContentPanelRenderEventArgs.cs
- NegationPusher.cs
- ParameterElement.cs
- EntityConnection.cs
- ExpressionBuilder.cs
- CodeTypeDelegate.cs
- MouseActionConverter.cs
- DataControlFieldCollection.cs
- PowerModeChangedEventArgs.cs
- InvokeBase.cs
- RSAPKCS1SignatureDeformatter.cs
- FontResourceCache.cs
- LeaseManager.cs
- DataBoundControlHelper.cs
- XmlFormatExtensionPrefixAttribute.cs
- ListMarkerSourceInfo.cs
- CodeDomSerializerBase.cs
- TemplateLookupAction.cs
- WebPartTransformerAttribute.cs
- BooleanFacetDescriptionElement.cs