HttpCookieCollection.CopyTo(Array, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 Cookie 集合成員複製到以指定的陣列索引起始的 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
開始複製的目的陣列索引。
範例
下列範例會將整個 Cookie 集合複製到新的 Array 物件。
// 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)