Compartilhar via


HttpPostedFile.ContentType Propriedade

Definição

Obtém o tipo de conteúdo MIME de um arquivo enviado por um cliente.

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

Valor da propriedade

String

O tipo de conteúdo MIME do arquivo carregado.

Exemplos

O exemplo de código a seguir mostra como fazer loop por todos os arquivos na coleção de arquivos carregados e agir quando o tipo MIME de um arquivo for US-ASCII.

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

Aplica-se a

Confira também