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
- AssemblyName.cs
- RequiredFieldValidator.cs
- TemplateBindingExtensionConverter.cs
- ExtendedPropertyCollection.cs
- handlecollector.cs
- MaterializeFromAtom.cs
- DragStartedEventArgs.cs
- SynchronizedPool.cs
- AutomationIdentifierGuids.cs
- TextEffect.cs
- DataGridViewImageCell.cs
- DataGridViewTextBoxCell.cs
- Rotation3DAnimation.cs
- DataRecord.cs
- RMEnrollmentPage2.cs
- XsdValidatingReader.cs
- XmlStrings.cs
- FixedHyperLink.cs
- _SslStream.cs
- XPathChildIterator.cs
- ComponentRenameEvent.cs
- DbMetaDataCollectionNames.cs
- DependencyObjectType.cs
- DispatcherHookEventArgs.cs
- LocalizedNameDescriptionPair.cs
- CommandPlan.cs
- TextBounds.cs
- EventWaitHandleSecurity.cs
- MsmqOutputChannel.cs
- Math.cs
- ReferenceSchema.cs
- TemplateBuilder.cs
- CornerRadius.cs
- CodeDOMUtility.cs
- AppModelKnownContentFactory.cs
- RoleBoolean.cs
- printdlgexmarshaler.cs
- XmlBufferedByteStreamReader.cs
- InputDevice.cs
- TTSEngineTypes.cs
- UseLicense.cs
- AnnotationStore.cs
- XPathPatternParser.cs
- DefaultBindingPropertyAttribute.cs
- FormatControl.cs
- DirectoryNotFoundException.cs
- storagemappingitemcollection.viewdictionary.cs
- CreatingCookieEventArgs.cs
- StylusOverProperty.cs
- ToolStripDropDownClosedEventArgs.cs
- DelayLoadType.cs
- CodeTypeDeclaration.cs
- Currency.cs
- GeometryCombineModeValidation.cs
- SqlDataRecord.cs
- StaticDataManager.cs
- ExpressionCopier.cs
- DebugTracing.cs
- FormViewCommandEventArgs.cs
- PageThemeParser.cs
- ToolStripManager.cs
- WebPartZone.cs
- BinaryExpressionHelper.cs
- StreamingContext.cs
- NotSupportedException.cs
- DtdParser.cs
- FontFamily.cs
- InvokeWebServiceDesigner.cs
- XmlSchemaInfo.cs
- WebPartDisplayModeCancelEventArgs.cs
- SortDescriptionCollection.cs
- ImageButton.cs
- InvalidBodyAccessException.cs
- DataSetMappper.cs
- UiaCoreProviderApi.cs
- Tool.cs
- UserCancellationException.cs
- JsonSerializer.cs
- SelectionPattern.cs
- ScalarType.cs
- IFlowDocumentViewer.cs
- OleDbEnumerator.cs
- StringSource.cs
- UnsafeNativeMethods.cs
- ReverseInheritProperty.cs
- X509CertificateTrustedIssuerElementCollection.cs
- NativeMethods.cs
- CommandBinding.cs
- SynchronizedDisposablePool.cs
- WindowsSysHeader.cs
- SamlAuthenticationClaimResource.cs
- Dump.cs
- DateTimeConstantAttribute.cs
- XmlReflectionMember.cs
- TextShapeableCharacters.cs
- HighlightComponent.cs
- SqlDataSourceView.cs
- JsonFormatWriterGenerator.cs
- externdll.cs
- XsltContext.cs