| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Configuration {
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class XmlFormatExtensionPrefixAttribute : Attribute {
- #region Fields
- string prefix;
- string ns;
- #endregion // Fields
- #region Constructors
- public XmlFormatExtensionPrefixAttribute ()
- {
- }
- public XmlFormatExtensionPrefixAttribute (string prefix, string ns)
- : this ()
- {
- this.prefix = prefix;
- this.ns = ns;
- }
- #endregion // Constructors
- #region Properties
- public string Prefix {
- get { return prefix; }
- set { prefix = value; }
- }
- public string Namespace {
- get { return ns; }
- set { ns = value; }
- }
- #endregion // Properties
- }
- }
|