Class MimeMap
The class that is used to store MIME-type-to-file-extension mapping.
Inheritance
Inherited Members
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class MimeMap
Constructors
MimeMap()
Declaration
public MimeMap()
Properties
FileExtension
Gets or sets the file extension for this mapping. The provided file extension should start with . (dot). E.g. .txt, .html, .png etc. This property should not be null, empty string or string containing only white spaces, in order Telerik FiddlerCore to load it.
Declaration
public string FileExtension { get; set; }
Property Value
System.String
|
MimeType
Gets or sets the MIME type for this mapping. The provided MIME type should be in the format "top-level type name / subtype name" and should not include the parameters section of the MIME type. E.g. application/json, text/html, image/gif etc. This property should not be null, empty string or string containing only white spaces, in order Telerik FiddlerCore to load it.
Declaration
public string MimeType { get; set; }
Property Value
System.String
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|