6 writes to state
System.ServiceModel.Channels (6)
System\ServiceModel\Channels\XmlByteStreamWriter.cs (6)
27
this.
state
= ByteStreamWriterState.Start;
67
this.
state
= ByteStreamWriterState.Closed;
98
this.
state
= ByteStreamWriterState.EndElement;
125
this.
state
= ByteStreamWriterState.Content;
166
thisPtr.writer.
state
= ByteStreamWriterState.Content;
271
this.
state
= ByteStreamWriterState.StartElement;
9 references to state
System.ServiceModel.Channels (9)
System\ServiceModel\Channels\XmlByteStreamWriter.cs (9)
32
get { return ByteStreamWriterStateToWriteState(this.
state
); }
55
if (this.
state
!= ByteStreamWriterState.Closed)
77
if (this.
state
!= ByteStreamWriterState.Content && this.
state
!= ByteStreamWriterState.StartElement)
80
new InvalidOperationException(SR.XmlWriterMustBeInElement(ByteStreamWriterStateToWriteState(this.
state
))));
93
if (this.
state
!= ByteStreamWriterState.StartElement && this.
state
!= ByteStreamWriterState.Content)
260
if (this.
state
!= ByteStreamWriterState.Start)
293
if (this.
state
== ByteStreamWriterState.Closed)