C# 클래스 PRI.ProductivityExtensions.XmlWriterExtensions.XmlWriterable

Class that contains extension methods that extend XmlWriter
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
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