C# Class PRI.ProductivityExtensions.XmlWriterExtensions.XmlWriterable

Class that contains extension methods that extend XmlWriter
Show file Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
WriteBase64 ( this xmlwriter, Byte buffer ) : void

Extends WriteBase64 so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteBase64(buffer);

WriteBinHex ( this xmlwriter, Byte buffer ) : void

Extends WriteBinHex so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteBinHex(buffer);

WriteChars ( this xmlwriter, Char buffer ) : void

Extends WriteChars so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteChars(buffer);

WriteRaw ( this xmlwriter, Char buffer ) : void

Extends WriteRaw so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteRaw(buffer);

Method Details

WriteBase64() public static method

Extends WriteBase64 so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteBase64(buffer);
public static WriteBase64 ( this xmlwriter, Byte buffer ) : void
xmlwriter this
buffer Byte
return void

WriteBinHex() public static method

Extends WriteBinHex so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteBinHex(buffer);
public static WriteBinHex ( this xmlwriter, Byte buffer ) : void
xmlwriter this
buffer Byte
return void

WriteChars() public static method

Extends WriteChars so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteChars(buffer);
public static WriteChars ( this xmlwriter, Char buffer ) : void
xmlwriter this
buffer Char
return void

WriteRaw() public static method

Extends WriteRaw so that buffer offset of 0 and call to Array.Length are not needed. xmlwriter.WriteRaw(buffer);
public static WriteRaw ( this xmlwriter, Char buffer ) : void
xmlwriter this
buffer Char
return void