Class ProfferFormatAttribute
Attribute allowing developer to specify that a class supports the specified Import/Export Format.
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public sealed class ProfferFormatAttribute : Attribute
Constructors
ProfferFormatAttribute(String, String)
Attribute allowing developer to specify that a class supports the specified Import/Export Format
Declaration
public ProfferFormatAttribute(string sFormatName, string sDescription)
Parameters
System.String
sFormatName
Shortname of the Format (e.g. WebText XML) |
System.String
sDescription
Description of the format |
ProfferFormatAttribute(String, String, String)
Attribute allowing developer to specify that a class supports the specified Import/Export Format
Declaration
public ProfferFormatAttribute(string sFormatName, string sDescription, string sExtensions)
Parameters
System.String
sFormatName
Shortname of the Format (e.g. WebText XML) |
System.String
sDescription
Description of the format |
System.String
sExtensions
Semi-colon delimited file extensions (e.g. ".har;.harx") |
Properties
FormatDescription
Returns the Description of this format
Declaration
public string FormatDescription { get; }
Property Value
System.String
|
FormatName
Returns the Shortname for this format
Declaration
public string FormatName { get; }
Property Value
System.String
|