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