C# Класс PRI.ProductivityExtensions.XmlWriterExtensions.XmlWriterable

Class that contains extension methods that extend XmlWriter
Показать файл Открыть проект

Открытые методы

Метод Описание
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);

Описание методов

WriteBase64() публичный статический Метод

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
Результат void

WriteBinHex() публичный статический Метод

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
Результат void

WriteChars() публичный статический Метод

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
Результат void

WriteRaw() публичный статический Метод

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
Результат void