HttpRequest.AcceptTypes プロパティ

定義

クライアントにサポートされている MIME で使用できる型の文字列配列を取得します。

public:
 property cli::array <System::String ^> ^ AcceptTypes { cli::array <System::String ^> ^ get(); };
public string[] AcceptTypes { get; }
member this.AcceptTypes : string[]
Public ReadOnly Property AcceptTypes As String()

プロパティ値

String[]

クライアントにサポートされている MIME で使用できる型の文字列配列。

次のコード例では、プロパティによって返される複数の値を AcceptTypes オブジェクト変数にキャプチャし、各値の数と名前を別の HTTP 出力行に書き込みます。

int indx;

 String[] arr = Request.AcceptTypes;
 for (indx = 0; indx < arr.Length; indx++) {
    Response.Write("Accept Type " + indx +": " + arr[indx] + "<br>");
 }

Dim MyType() As String
 Dim Indx As Integer
 
 MyType = Request.AcceptTypes
 For Indx = 0 To MyType.GetUpperBound(0)
    Response.Write("Accept Type " & Cstr(Indx) & ": " & Cstr(MyType(Indx)) & "<br>")
 Next Indx
   

適用対象