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)