| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.Web.Services.Description.FaultBinding.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services.Configuration;
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- [XmlFormatExtensionPoint ("Extensions")]
- public sealed class FaultBinding : MessageBinding {
- #region Fields
- ServiceDescriptionFormatExtensionCollection extensions;
- OperationBinding operationBinding;
- #endregion // Fields
- #region Constructors
-
- public FaultBinding ()
- {
- extensions = new ServiceDescriptionFormatExtensionCollection (this);
- operationBinding = null;
- }
-
- #endregion // Constructors
- #region Properties
- [XmlIgnore]
- public override ServiceDescriptionFormatExtensionCollection Extensions {
- get { return extensions; }
- }
-
- #endregion // Properties
- #region Methods
- internal void SetParent (OperationBinding operationBinding)
- {
- this.operationBinding = operationBinding;
- }
- #endregion
- }
- }
|