HttpCookieCollection.CopyTo(Array, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 배열 인덱스에서 시작하는 Array에 쿠키 컬렉션 멤버를 복사합니다.
public:
void CopyTo(Array ^ dest, int index);
public void CopyTo (Array dest, int index);
member this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)
매개 변수
- index
- Int32
복사를 시작할 대상 배열의 인덱스입니다.
예제
다음 예제에서는 새 배열 개체에 전체 쿠키 컬렉션을 복사합니다.
// Create the one-dimensional target array.
// Dimension it large enough to hold the cookies collection.
Array MyArray = Array.CreateInstance( typeof(String), Request.Cookies.Count );
// Copy the entire collection to the array.
Request.Cookies.CopyTo( MyArray, 0 );
' Create the one-dimensional target array.
' Dimension it large enough to hold the cookies collection.
Dim MyArray As Array = Array.CreateInstance(GetType(String), Request.Cookies.Count)
' Copy the entire collection to the array.
Request.Cookies.CopyTo(MyArray, 0)