C# 클래스 System.Xml.XmlBaseWriter

상속: XmlDictionaryWriter
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void
EndCanonicalization ( ) : void
Flush ( ) : void
FlushAsync ( ) : System.Threading.Tasks.Task
LookupPrefix ( string ns ) : string
StartCanonicalization ( Stream stream, bool includeComments, string inclusivePrefixes ) : void
WriteBase64 ( byte buffer, int offset, int count ) : void
WriteBase64Async ( byte buffer, int offset, int count ) : System.Threading.Tasks.Task
WriteCData ( string text ) : void
WriteCharEntity ( char ch ) : void
WriteChars ( char chars, int offset, int count ) : void
WriteComment ( string text ) : void
WriteDocType ( string name, string pubid, string sysid, string subset ) : void
WriteEndAttribute ( ) : void
WriteEndDocument ( ) : void
WriteEndElement ( ) : void
WriteEndElementAsync ( ) : System.Threading.Tasks.Task
WriteEntityRef ( string name ) : void
WriteFullEndElement ( ) : void
WriteName ( string name ) : void
WriteNmToken ( string name ) : void
WriteProcessingInstruction ( string name, string text ) : void
WriteQualifiedName ( XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
WriteQualifiedName ( string localName, string namespaceUri ) : void
WriteRaw ( char chars, int offset, int count ) : void
WriteRaw ( string value ) : void
WriteStartAttribute ( string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
WriteStartAttribute ( string prefix, string localName, string namespaceUri ) : void
WriteStartDocument ( ) : void
WriteStartDocument ( bool standalone ) : void
WriteStartElement ( string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
WriteStartElement ( string prefix, string localName, string namespaceUri ) : void
WriteStartElementAsync ( string prefix, string localName, string namespaceUri ) : System.Threading.Tasks.Task
WriteString ( XmlDictionaryString value ) : void
WriteString ( string value ) : void
WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
WriteValue ( DateTime value ) : void
WriteValue ( Guid value ) : void
WriteValue ( TimeSpan value ) : void
WriteValue ( UniqueId value ) : void
WriteValue ( XmlDictionaryString value ) : void
WriteValue ( bool value ) : void
WriteValue ( decimal value ) : void
WriteValue ( double value ) : void
WriteValue ( float value ) : void
WriteValue ( int value ) : void
WriteValue ( long value ) : void
WriteValue ( object value ) : void
WriteValue ( string value ) : void
WriteWhitespace ( string whitespace ) : void
WriteXmlnsAttribute ( string prefix, XmlDictionaryString ns ) : void
WriteXmlnsAttribute ( string prefix, string ns ) : void

보호된 메소드들

메소드 설명
EndArray ( ) : void
EndComment ( ) : void
EndContent ( ) : void
FlushElement ( ) : void
SetOutput ( XmlStreamNodeWriter writer ) : void
StartArray ( int count ) : void
StartComment ( ) : void
StartContent ( ) : void
StartContent ( char ch ) : void
StartContent ( char chars, int offset, int count ) : void
StartContent ( string s ) : void
StartContentAsync ( ) : System.Threading.Tasks.Task
ThrowClosed ( ) : void
WriteEndAttributeAsync ( ) : System.Threading.Tasks.Task
WritePrimitiveValue ( object value ) : void
XmlBaseWriter ( ) : System.IO

비공개 메소드들

메소드 설명
AutoComplete ( WriteState writeState ) : void
AutoCompleteAsync ( WriteState writeState ) : System.Threading.Tasks.Task
EndStartElement ( ) : void
EndStartElementAsync ( ) : System.Threading.Tasks.Task
EnterScope ( ) : Element
ExitScope ( ) : void
FinishDocument ( ) : void
FlushBase64 ( ) : void
FlushBase64Async ( ) : System.Threading.Tasks.Task
FlushElementAsync ( ) : System.Threading.Tasks.Task
FlushTrailBytes ( ) : void
FlushTrailBytesAsync ( ) : System.Threading.Tasks.Task
GeneratePrefix ( string ns, XmlDictionaryString xNs ) : string
GetQualifiedNamePrefix ( string namespaceUri, XmlDictionaryString xNs ) : string
IsWhitespace ( char ch ) : bool
LookupNamespace ( string prefix ) : string
PreStartElementAsyncCheck ( string prefix, string localName, string ns, XmlDictionaryString xNs ) : void
StartAttribute ( string &prefix, string localName, string ns, XmlDictionaryString xNs ) : void
StartElement ( string &prefix, string localName, string ns, XmlDictionaryString xNs ) : void
StartElementAndWriteStartElementAsync ( string prefix, string localName, string namespaceUri ) : System.Threading.Tasks.Task
StartElementAsync ( string prefix, string localName, string ns, XmlDictionaryString xNs ) : Task
VerifyWhitespace ( char ch ) : void
VerifyWhitespace ( char chars, int offset, int count ) : void
VerifyWhitespace ( string s ) : void
WriteAttributeText ( string value ) : void
WriteBase64AsyncImpl ( byte buffer, int offset, int count ) : System.Threading.Tasks.Task
WriteEndAttributeAsyncImpl ( ) : System.Threading.Tasks.Task
WriteEndElementAsyncImpl ( ) : System.Threading.Tasks.Task
WriteValue ( Array array ) : void
WriteValue ( ulong value ) : void

메소드 상세

Close() 공개 메소드

public Close ( ) : void
리턴 void

EndArray() 보호된 메소드

protected EndArray ( ) : void
리턴 void

EndCanonicalization() 공개 메소드

public EndCanonicalization ( ) : void
리턴 void

EndComment() 보호된 메소드

protected EndComment ( ) : void
리턴 void

EndContent() 보호된 메소드

protected EndContent ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

FlushAsync() 공개 메소드

public FlushAsync ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task

FlushElement() 보호된 메소드

protected FlushElement ( ) : void
리턴 void

LookupPrefix() 공개 메소드

public LookupPrefix ( string ns ) : string
ns string
리턴 string

SetOutput() 보호된 메소드

protected SetOutput ( XmlStreamNodeWriter writer ) : void
writer XmlStreamNodeWriter
리턴 void

StartArray() 보호된 메소드

protected StartArray ( int count ) : void
count int
리턴 void

StartCanonicalization() 공개 메소드

public StartCanonicalization ( Stream stream, bool includeComments, string inclusivePrefixes ) : void
stream System.IO.Stream
includeComments bool
inclusivePrefixes string
리턴 void

StartComment() 보호된 메소드

protected StartComment ( ) : void
리턴 void

StartContent() 보호된 메소드

protected StartContent ( ) : void
리턴 void

StartContent() 보호된 메소드

protected StartContent ( char ch ) : void
ch char
리턴 void

StartContent() 보호된 메소드

protected StartContent ( char chars, int offset, int count ) : void
chars char
offset int
count int
리턴 void

StartContent() 보호된 메소드

protected StartContent ( string s ) : void
s string
리턴 void

StartContentAsync() 보호된 메소드

protected StartContentAsync ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task

ThrowClosed() 보호된 메소드

protected ThrowClosed ( ) : void
리턴 void

WriteBase64() 공개 메소드

public WriteBase64 ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
리턴 void

WriteBase64Async() 공개 메소드

public WriteBase64Async ( byte buffer, int offset, int count ) : System.Threading.Tasks.Task
buffer byte
offset int
count int
리턴 System.Threading.Tasks.Task

WriteCData() 공개 메소드

public WriteCData ( string text ) : void
text string
리턴 void

WriteCharEntity() 공개 메소드

public WriteCharEntity ( char ch ) : void
ch char
리턴 void

WriteChars() 공개 메소드

public WriteChars ( char chars, int offset, int count ) : void
chars char
offset int
count int
리턴 void

WriteComment() 공개 메소드

public WriteComment ( string text ) : void
text string
리턴 void

WriteDocType() 공개 메소드

public WriteDocType ( string name, string pubid, string sysid, string subset ) : void
name string
pubid string
sysid string
subset string
리턴 void

WriteEndAttribute() 공개 메소드

public WriteEndAttribute ( ) : void
리턴 void

WriteEndAttributeAsync() 보호된 메소드

protected WriteEndAttributeAsync ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task

WriteEndDocument() 공개 메소드

public WriteEndDocument ( ) : void
리턴 void

WriteEndElement() 공개 메소드

public WriteEndElement ( ) : void
리턴 void

WriteEndElementAsync() 공개 메소드

public WriteEndElementAsync ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task

WriteEntityRef() 공개 메소드

public WriteEntityRef ( string name ) : void
name string
리턴 void

WriteFullEndElement() 공개 메소드

public WriteFullEndElement ( ) : void
리턴 void

WriteName() 공개 메소드

public WriteName ( string name ) : void
name string
리턴 void

WriteNmToken() 공개 메소드

public WriteNmToken ( string name ) : void
name string
리턴 void

WritePrimitiveValue() 보호된 메소드

protected WritePrimitiveValue ( object value ) : void
value object
리턴 void

WriteProcessingInstruction() 공개 메소드

public WriteProcessingInstruction ( string name, string text ) : void
name string
text string
리턴 void

WriteQualifiedName() 공개 메소드

public WriteQualifiedName ( XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
localName XmlDictionaryString
namespaceUri XmlDictionaryString
리턴 void

WriteQualifiedName() 공개 메소드

public WriteQualifiedName ( string localName, string namespaceUri ) : void
localName string
namespaceUri string
리턴 void

WriteRaw() 공개 메소드

public WriteRaw ( char chars, int offset, int count ) : void
chars char
offset int
count int
리턴 void

WriteRaw() 공개 메소드

public WriteRaw ( string value ) : void
value string
리턴 void

WriteStartAttribute() 공개 메소드

public WriteStartAttribute ( string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
prefix string
localName XmlDictionaryString
namespaceUri XmlDictionaryString
리턴 void

WriteStartAttribute() 공개 메소드

public WriteStartAttribute ( string prefix, string localName, string namespaceUri ) : void
prefix string
localName string
namespaceUri string
리턴 void

WriteStartDocument() 공개 메소드

public WriteStartDocument ( ) : void
리턴 void

WriteStartDocument() 공개 메소드

public WriteStartDocument ( bool standalone ) : void
standalone bool
리턴 void

WriteStartElement() 공개 메소드

public WriteStartElement ( string prefix, XmlDictionaryString localName, XmlDictionaryString namespaceUri ) : void
prefix string
localName XmlDictionaryString
namespaceUri XmlDictionaryString
리턴 void

WriteStartElement() 공개 메소드

public WriteStartElement ( string prefix, string localName, string namespaceUri ) : void
prefix string
localName string
namespaceUri string
리턴 void

WriteStartElementAsync() 공개 메소드

public WriteStartElementAsync ( string prefix, string localName, string namespaceUri ) : System.Threading.Tasks.Task
prefix string
localName string
namespaceUri string
리턴 System.Threading.Tasks.Task

WriteString() 공개 메소드

public WriteString ( XmlDictionaryString value ) : void
value XmlDictionaryString
리턴 void

WriteString() 공개 메소드

public WriteString ( string value ) : void
value string
리턴 void

WriteSurrogateCharEntity() 공개 메소드

public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
lowChar char
highChar char
리턴 void

WriteValue() 공개 메소드

public WriteValue ( DateTime value ) : void
value DateTime
리턴 void

WriteValue() 공개 메소드

public WriteValue ( Guid value ) : void
value Guid
리턴 void

WriteValue() 공개 메소드

public WriteValue ( TimeSpan value ) : void
value TimeSpan
리턴 void

WriteValue() 공개 메소드

public WriteValue ( UniqueId value ) : void
value UniqueId
리턴 void

WriteValue() 공개 메소드

public WriteValue ( XmlDictionaryString value ) : void
value XmlDictionaryString
리턴 void

WriteValue() 공개 메소드

public WriteValue ( bool value ) : void
value bool
리턴 void

WriteValue() 공개 메소드

public WriteValue ( decimal value ) : void
value decimal
리턴 void

WriteValue() 공개 메소드

public WriteValue ( double value ) : void
value double
리턴 void

WriteValue() 공개 메소드

public WriteValue ( float value ) : void
value float
리턴 void

WriteValue() 공개 메소드

public WriteValue ( int value ) : void
value int
리턴 void

WriteValue() 공개 메소드

public WriteValue ( long value ) : void
value long
리턴 void

WriteValue() 공개 메소드

public WriteValue ( object value ) : void
value object
리턴 void

WriteValue() 공개 메소드

public WriteValue ( string value ) : void
value string
리턴 void

WriteWhitespace() 공개 메소드

public WriteWhitespace ( string whitespace ) : void
whitespace string
리턴 void

WriteXmlnsAttribute() 공개 메소드

public WriteXmlnsAttribute ( string prefix, XmlDictionaryString ns ) : void
prefix string
ns XmlDictionaryString
리턴 void

WriteXmlnsAttribute() 공개 메소드

public WriteXmlnsAttribute ( string prefix, string ns ) : void
prefix string
ns string
리턴 void

XmlBaseWriter() 보호된 메소드

protected XmlBaseWriter ( ) : System.IO
리턴 System.IO