4 references to BoundaryPrefix
System.Runtime.Serialization (4)
System\Xml\XmlMtomWriter.cs (4)
1011
byte[] boundaryBytes = new byte[boundary.Length + MimeGlobals.
BoundaryPrefix
.Length];
1012
for (int i = 0; i < MimeGlobals.
BoundaryPrefix
.Length; i++)
1013
boundaryBytes[i] = MimeGlobals.
BoundaryPrefix
[i];
1014
Encoding.ASCII.GetBytes(boundary, 0, boundary.Length, boundaryBytes, MimeGlobals.
BoundaryPrefix
.Length);