WebReferenceCollection.CopyTo(WebReference[], Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 배열 인덱스에서 시작하여 컬렉션 멤버를 지정된 배열에 복사합니다.
public:
void CopyTo(cli::array <System::Web::Services::Description::WebReference ^> ^ array, int index);
public void CopyTo (System.Web.Services.Description.WebReference[] array, int index);
member this.CopyTo : System.Web.Services.Description.WebReference[] * int -> unit
Public Sub CopyTo (array As WebReference(), index As Integer)
매개 변수
- array
- WebReference[]
컬렉션 멤버가 복사되는 웹 참조 배열입니다.
- index
- Int32
복사를 시작할 배열 인덱스입니다.
예제
다음 코드 예제에서는 CopyTo 메서드를 사용하는 방법을 보여 줍니다.
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Discovery;
using System.Xml;
using System.Xml.Serialization;
public class Test
{
public static void Main ()
{
// Read in a WSDL service description.
string url = "http://www.contoso.com/Example/WebService.asmx?WSDL";
XmlTextReader reader = new XmlTextReader(url);
ServiceDescription wsdl = ServiceDescription.Read(reader);
// Create a WSDL collection.
DiscoveryClientDocumentCollection wsdlCollection =
new DiscoveryClientDocumentCollection();
wsdlCollection.Add(url, wsdl);
// Define the parameters needed to create web references.
CodeNamespace proxyNamespace = new CodeNamespace("ExampleNamespace");
string baseUrl = "http://www.contoso.com";
string protocolName = "Soap12";
// Create some web references.
WebReference reference1 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey1", baseUrl);
WebReference reference2 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey2", baseUrl);
WebReference reference3 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey3", baseUrl);
// Create a web reference collection.
WebReferenceCollection references = new WebReferenceCollection();
references.Add(reference1);
references.Add(reference2);
// Confirm that the references were inserted.
Console.WriteLine("The collection contains {0} references.",
references.Count);
// Insert another reference into the collection.
references.Insert(2, reference3);
// Print the index of the inserted reference.
int index = references.IndexOf(reference3);
Console.WriteLine("The index of reference3 is {0}.", index);
// Remove the inserted reference from the collection.
references.Remove(reference3);
// Determine if the collection contains reference3.
if (references.Contains(reference3))
{
Console.WriteLine("The collection contains reference3.");
}
else
{
Console.WriteLine("The collection does not contain reference3.");
}
// Print the URL key of the first reference in the collection.
Console.WriteLine(
"The URL key of the first reference in the collection is {0}.",
references[0].AppSettingUrlKey);
// Copy the collection to an array leaving the first array slot empty.
WebReference[] referenceArray = new WebReference[3];
references.CopyTo(referenceArray, 1);
Console.WriteLine(
"The URL key of the first reference in the array is {0}.",
referenceArray[1].AppSettingUrlKey);
}
}
설명
인덱스는 0부터 시작합니다. 배열의 지정된 된 배열 인덱스에서 시작 하 여 복사 하는 컬렉션의 내용에 맞게 충분히 커야 합니다.