C# Class PRI.ProductivityExtensions.XmlWriterExtensions.XmlWriterable

Class that contains extension methods that extend XmlWriter
Afficher le fichier Open project: peteraritchie/ProductivityExtensions

Méthodes publiques

Méthode 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 méthode

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
Résultat void

WriteBinHex() public static méthode

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
Résultat void

WriteChars() public static méthode

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
Résultat void

WriteRaw() public static méthode

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
Résultat void