HttpResponse.ContentType Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Çıkış akışının HTTP MIME türünü alır veya ayarlar.
public:
property System::String ^ ContentType { System::String ^ get(); void set(System::String ^ value); };
public string ContentType { get; set; }
member this.ContentType : string with get, set
Public Property ContentType As String
Özellik Değeri
Çıkış akışının HTTP MIME türü. Varsayılan değer "text/html
"dir.
Özel durumlar
ContentType özelliği null
olarak ayarlanmıştır.
Örnekler
Aşağıdaki örnek image/jpeg yanıtının özelliğini ayarlar ContentType , yanıta eklenmiş olabilecek diğer içeriği kaldırmak için yöntemini çağırır Clear ve ardından istekte bulunan istemciye herhangi bir içerik gönderilmeden önce tam sayfanın işlenmesi için özelliğini true olarak ayarlar BufferOutput .
Tam bir örnek için sınıfına HttpResponse bakın.
// Set the page's content type to JPEG files
// and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg";
Response.Clear();
// Buffer response so that page is sent
// after processing is complete.
Response.BufferOutput = true;
' Set the page's content type to JPEG files
' and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg"
Response.Clear()
' Buffer response so that page is sent
' after processing is complete.
Response.BufferOutput = True