Aracılığıyla paylaş


HttpPostedFile.ContentType Özellik

Tanım

İstemci tarafından gönderilen bir dosyanın MIME içerik türünü alır.

public:
 property System::String ^ ContentType { System::String ^ get(); };
public string ContentType { get; }
member this.ContentType : string
Public ReadOnly Property ContentType As String

Özellik Değeri

String

Karşıya yüklenen dosyanın MIME içerik türü.

Örnekler

Aşağıdaki kod örneği, karşıya yüklenen dosya koleksiyonundaki tüm dosyalar arasında döngü yapmayı ve bir dosyanın MIME türü olduğunda US-ASCIIeylem gerçekleştirmeyi gösterir.

HttpFileCollection MyFileCollection = Request.Files;

 for (int Loop1 = 0; Loop1 < MyFileCollection.Count; Loop1++)
 {
    if (MyFileCollection[Loop1].ContentType == "video/mpeg")
    {
       //...
    }
 }
Dim Loop1 As Integer
 Dim MyFileCollection As HttpFileCollection = Request.Files
 
 For Loop1 = 0 To MyFileCollection.Count - 1
    If MyFileCollection(Loop1).ContentType = "video/mpeg" Then
       '...
    End If
 Next Loop1

Şunlara uygulanır

Ayrıca bkz.