HttpCookieCollection.CopyTo メソッド
配列の指定したインデックスで始まる Array に cookie コレクションのメンバをコピーします。
名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public Sub CopyTo ( _
dest As Array, _
index As Integer _
)
'使用
Dim instance As HttpCookieCollection
Dim dest As Array
Dim index As Integer
instance.CopyTo(dest, index)
public void CopyTo (
Array dest,
int index
)
public:
void CopyTo (
Array^ dest,
int index
)
public void CopyTo (
Array dest,
int index
)
public function CopyTo (
dest : Array,
index : int
)
適用できません。
パラメータ
- dest
コピー先の Array。
- index
コピー先配列のインデックス。コピーが開始される位置を示します。
使用例
新しい Array オブジェクトに cookie コレクション全体をコピーする例を次に示します。
' 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)
// 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.
Array myArray = Array.CreateInstance(String.class.ToType(),
get_Request().get_Cookies().get_Count());
// Copy the entire collection to the array.
get_Request().get_Cookies().CopyTo(myArray, 0);
// Create the one-dimensional target Array.
// Dimension it large enough to hold the cookies collection.
var myArray : System.Array = System.Array.CreateInstance(System.String, Request.Cookies.Count)
// Copy the entire cookies collection to the array.
Request.Cookies.CopyTo(myArray, 0)
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0
参照
関連項目
HttpCookieCollection クラス
HttpCookieCollection メンバ
System.Web 名前空間
Clear
Add