X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web.Services%2FSystem.Web.Services.Description%2FFaultBindingCollection.cs;h=c0daea63fd95cda09e5ba5b3b7839127f5d02eef;hb=2670761ee7f20ecfb4b49610394aca0f44aa0738;hp=b6e5b2300426e58ceff5eb88ebb40e4699e0a406;hpb=07ec1253c277856bdbb74213e2defc8ed23cf8e3;p=mono.git diff --git a/mcs/class/System.Web.Services/System.Web.Services.Description/FaultBindingCollection.cs b/mcs/class/System.Web.Services/System.Web.Services.Description/FaultBindingCollection.cs index b6e5b230042..c0daea63fd9 100644 --- a/mcs/class/System.Web.Services/System.Web.Services.Description/FaultBindingCollection.cs +++ b/mcs/class/System.Web.Services/System.Web.Services.Description/FaultBindingCollection.cs @@ -1,11 +1,11 @@ -// -// System.Web.Services.Description.FaultBindingCollection.cs -// -// Author: -// Tim Coleman (tim@timcoleman.com) -// -// Copyright (C) Tim Coleman, 2002 -// +// +// System.Web.Services.Description.FaultBindingCollection.cs +// +// Author: +// Tim Coleman (tim@timcoleman.com) +// +// Copyright (C) Tim Coleman, 2002 +// // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,82 +27,82 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // - -namespace System.Web.Services.Description { - public sealed class FaultBindingCollection : ServiceDescriptionBaseCollection { - - #region Constructors - - internal FaultBindingCollection (OperationBinding operationBinding) - : base (operationBinding) - { - } - - #endregion // Constructors - - #region Properties - - public FaultBinding this [int index] { - get { - if (index < 0 || index > Count) - throw new ArgumentOutOfRangeException (); - return (FaultBinding) List[index]; - } - set { List [index] = value; } - } - - public FaultBinding this [string name] { - get { return this [IndexOf ((FaultBinding) Table[name])]; } - } - - #endregion // Properties - - #region Methods - - public int Add (FaultBinding bindingOperationFault) - { - Insert (Count, bindingOperationFault); - return (Count - 1); - } - - public bool Contains (FaultBinding bindingOperationFault) - { - return List.Contains (bindingOperationFault); - } - - public void CopyTo (FaultBinding[] array, int index) - { - List.CopyTo (array, index); - } - - protected override string GetKey (object value) - { - if (!(value is FaultBinding)) - throw new InvalidCastException (); - - return ((FaultBinding) value).Name; - } - - public int IndexOf (FaultBinding bindingOperationFault) - { - return List.IndexOf (bindingOperationFault); - } - - public void Insert (int index, FaultBinding bindingOperationFault) - { - List.Insert (index, bindingOperationFault); - } - - public void Remove (FaultBinding bindingOperationFault) - { - List.Remove (bindingOperationFault); - } - - protected override void SetParent (object value, object parent) - { - ((FaultBinding) value).SetParent ((OperationBinding) parent); - } - - #endregion // Methods - } -} + +namespace System.Web.Services.Description { + public sealed class FaultBindingCollection : ServiceDescriptionBaseCollection { + + #region Constructors + + internal FaultBindingCollection (OperationBinding operationBinding) + : base (operationBinding) + { + } + + #endregion // Constructors + + #region Properties + + public FaultBinding this [int index] { + get { + if (index < 0 || index > Count) + throw new ArgumentOutOfRangeException (); + return (FaultBinding) List[index]; + } + set { List [index] = value; } + } + + public FaultBinding this [string name] { + get { return this [IndexOf ((FaultBinding) Table[name])]; } + } + + #endregion // Properties + + #region Methods + + public int Add (FaultBinding bindingOperationFault) + { + Insert (Count, bindingOperationFault); + return (Count - 1); + } + + public bool Contains (FaultBinding bindingOperationFault) + { + return List.Contains (bindingOperationFault); + } + + public void CopyTo (FaultBinding[] array, int index) + { + List.CopyTo (array, index); + } + + protected override string GetKey (object value) + { + if (!(value is FaultBinding)) + throw new InvalidCastException (); + + return ((FaultBinding) value).Name; + } + + public int IndexOf (FaultBinding bindingOperationFault) + { + return List.IndexOf (bindingOperationFault); + } + + public void Insert (int index, FaultBinding bindingOperationFault) + { + List.Insert (index, bindingOperationFault); + } + + public void Remove (FaultBinding bindingOperationFault) + { + List.Remove (bindingOperationFault); + } + + protected override void SetParent (object value, object parent) + { + ((FaultBinding) value).SetParent ((OperationBinding) parent); + } + + #endregion // Methods + } +}