MimeTypeAppendTo Method
Appends a
String representation of this instance according to RFC 2045 and RFC 2231 to the
end of a
StringBuilder.
Namespace: FolkerKinzel.MimeTypesAssembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
public StringBuilder AppendTo(
StringBuilder builder,
MimeFormats options = MimeFormats.Default,
int maxLineLength = 64
)
Public Function AppendTo (
builder As StringBuilder,
Optional options As MimeFormats = MimeFormats.Default,
Optional maxLineLength As Integer = 64
) As StringBuilder
public:
StringBuilder^ AppendTo(
StringBuilder^ builder,
MimeFormats options = MimeFormats::Default,
int maxLineLength = 64
)
member AppendTo :
builder : StringBuilder *
?options : MimeFormats *
?maxLineLength : int
(* Defaults:
let _options = defaultArg options MimeFormats.Default
let _maxLineLength = defaultArg maxLineLength 64
*)
-> StringBuilder
- builder StringBuilder
- The StringBuilder.
- options MimeFormats (Optional)
- Named constants to specify options for the serialization of the instance. The
flags can be combined.
- maxLineLength Int32 (Optional)
- The number of characters in a single line of the serialized instance
before a line-wrapping occurs. The parameter is ignored, if the flag LineWrapping
is not set. If the value of the argument is smaller than MinLineLength, the value of
MinLineLength is taken instead.
StringBuilderA reference to
builder.