1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
//------------------------------------------------------------------------------
// <copyright file="WebReferenceCollection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Services.Description {
using System;
using System.Net;
using System.Web.Services.Description;
using System.IO;
using System.Xml;
using System.Xml.Schema;
using System.Web.Services.Protocols;
using System.Text;
using System.Collections;
using System.Collections.Specialized;
using System.Threading;
using System.CodeDom;
using System.Web.Services.Discovery;
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public sealed class WebReferenceCollection : CollectionBase {
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.this"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public WebReference this[int index] {
get { return (WebReference)List[index]; }
set { List[index] = value; }
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.Add"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public int Add(WebReference webReference) {
return List.Add(webReference);
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.Insert"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void Insert(int index, WebReference webReference) {
List.Insert(index, webReference);
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.IndexOf"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public int IndexOf(WebReference webReference) {
return List.IndexOf(webReference);
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.Contains"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public bool Contains(WebReference webReference) {
return List.Contains(webReference);
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.Remove"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void Remove(WebReference webReference) {
List.Remove(webReference);
}
/// <include file='doc\WebReferenceCollection.uex' path='docs/doc[@for="WebReferenceCollection.CopyTo"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void CopyTo(WebReference[] array, int index) {
List.CopyTo(array, index);
}
}
}
|