HttpRequest.AcceptTypes プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クライアントにサポートされている 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