다음을 통해 공유


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
   

적용 대상