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
- AssemblyEvidenceFactory.cs
- Stylus.cs
- WpfKnownMember.cs
- RowParagraph.cs
- ConnectionsZone.cs
- ProjectionNode.cs
- odbcmetadatafactory.cs
- ModuleBuilderData.cs
- TransactionTable.cs
- ResXResourceSet.cs
- PropertyTabAttribute.cs
- HashSet.cs
- CodeConstructor.cs
- UndoManager.cs
- ZipIOExtraFieldElement.cs
- HttpCapabilitiesBase.cs
- WebPartCatalogCloseVerb.cs
- AssociationType.cs
- DllNotFoundException.cs
- CompositeCollection.cs
- ScriptRegistrationManager.cs
- StickyNote.cs
- ApplicationInterop.cs
- SystemIPGlobalProperties.cs
- FirstMatchCodeGroup.cs
- EntitySqlQueryState.cs
- IsolatedStorageFilePermission.cs
- EntityProviderServices.cs
- CodeTryCatchFinallyStatement.cs
- Win32PrintDialog.cs
- WarningException.cs
- ColorAnimation.cs
- CodeConstructor.cs
- Hashtable.cs
- StopStoryboard.cs
- GatewayDefinition.cs
- SecureConversationServiceElement.cs
- DBConnection.cs
- Stopwatch.cs
- DefaultMemberAttribute.cs
- OdbcStatementHandle.cs
- StyleTypedPropertyAttribute.cs
- SQLDateTimeStorage.cs
- Geometry3D.cs
- TemplateParser.cs
- BaseCodePageEncoding.cs
- IImplicitResourceProvider.cs
- IdentityValidationException.cs
- Parallel.cs
- BrowserTree.cs
- DeviceSpecific.cs
- SecurityToken.cs
- SafeCertificateStore.cs
- SupportingTokenChannel.cs
- BamlRecordWriter.cs
- PartitionerStatic.cs
- GeometryModel3D.cs
- SmiRecordBuffer.cs
- FlowDocumentPage.cs
- Graphics.cs
- OlePropertyStructs.cs
- cryptoapiTransform.cs
- IfAction.cs
- StrongNameKeyPair.cs
- DocumentOrderQuery.cs
- RelatedImageListAttribute.cs
- Trigger.cs
- TableProvider.cs
- HttpModulesSection.cs
- PathSegmentCollection.cs
- WorkItem.cs
- PropertyMetadata.cs
- SerialErrors.cs
- PrintPageEvent.cs
- IndexedWhereQueryOperator.cs
- CodeExpressionCollection.cs
- EnumerableCollectionView.cs
- KernelTypeValidation.cs
- DeflateStreamAsyncResult.cs
- WebPartEventArgs.cs
- StrokeCollectionDefaultValueFactory.cs
- FontStyleConverter.cs
- versioninfo.cs
- EntityDataSourceValidationException.cs
- BitVector32.cs
- StickyNoteAnnotations.cs
- SoapWriter.cs
- NavigationHelper.cs
- X509LogoTypeExtension.cs
- ListViewDataItem.cs
- EditorAttribute.cs
- CustomAttributeFormatException.cs
- ContextQuery.cs
- AnimationException.cs
- WeakEventManager.cs
- PropertyChangeTracker.cs
- MenuDesigner.cs
- CancelEventArgs.cs
- PlainXmlWriter.cs
- BinaryCommonClasses.cs