IndentedTextWriter.Write Method
Writes the specified value to the text stream.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | Write(Boolean) | Writes the text representation of a Boolean value to the text stream.(Overrides TextWriter.Write(Boolean).) |
![]() | Write(Char) | Writes a character to the text stream.(Overrides TextWriter.Write(Char).) |
![]() | Write(Char[]) | Writes a character array to the text stream.(Overrides TextWriter.Write(Char[]).) |
![]() | Write(Char[], Int32, Int32) | Writes a subarray of characters to the text stream.(Overrides TextWriter.Write(Char[], Int32, Int32).) |
![]() | Write(Decimal) | (Inherited from TextWriter.) |
![]() | Write(Double) | Writes the text representation of a Double to the text stream.(Overrides TextWriter.Write(Double).) |
![]() | Write(Int32) | Writes the text representation of an integer to the text stream.(Overrides TextWriter.Write(Int32).) |
![]() | Write(Int64) | Writes the text representation of an 8-byte integer to the text stream.(Overrides TextWriter.Write(Int64).) |
![]() | Write(Object) | Writes the text representation of an object to the text stream.(Overrides TextWriter.Write(Object).) |
![]() | Write(Single) | Writes the text representation of a Single to the text stream.(Overrides TextWriter.Write(Single).) |
![]() | Write(String) | Writes the specified string to the text stream.(Overrides TextWriter.Write(String).) |
![]() | Write(String, Object) | Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object).) |
![]() | Write(String, Object, Object) | Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object, Object).) |
![]() | Write(String, Object, Object, Object) | (Inherited from TextWriter.) |
![]() | Write(String, Object[]) | Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object[]).) |
![]() | Write(UInt32) | (Inherited from TextWriter.) |
![]() | Write(UInt64) | (Inherited from TextWriter.) |
IndentedTextWriter.Write Method (Boolean)
Writes the text representation of a Boolean value to the text stream.
Parameters
- value
-
Type:
System.Boolean
The Boolean value to write.
IndentedTextWriter.Write Method (Char)
Writes a character to the text stream.
Parameters
- value
-
Type:
System.Char
The character to write.
IndentedTextWriter.Write Method (Char[])
Writes a character array to the text stream.
Parameters
- buffer
-
Type:
System.Char[]
The character array to write.
IndentedTextWriter.Write Method (Char[], Int32, Int32)
Writes a subarray of characters to the text stream.
Parameters
- buffer
-
Type:
System.Char[]
The character array to write data from.
- index
-
Type:
System.Int32
Starting index in the buffer.
- count
-
Type:
System.Int32
The number of characters to write.
IndentedTextWriter.Write Method (Double)
Writes the text representation of a Double to the text stream.
Parameters
- value
-
Type:
System.Double
The double to write.
IndentedTextWriter.Write Method (Int32)
Writes the text representation of an integer to the text stream.
Parameters
- value
-
Type:
System.Int32
The integer to write.
IndentedTextWriter.Write Method (Int64)
Writes the text representation of an 8-byte integer to the text stream.
Parameters
- value
-
Type:
System.Int64
The 8-byte integer to write.
IndentedTextWriter.Write Method (Object)
Writes the text representation of an object to the text stream.
Parameters
- value
-
Type:
System.Object
The object to write.
IndentedTextWriter.Write Method (Single)
Writes the text representation of a Single to the text stream.
Parameters
- value
-
Type:
System.Single
The single to write.
IndentedTextWriter.Write Method (String)
Writes the specified string to the text stream.
Parameters
- value
-
Type:
System.String
The string to write.
IndentedTextWriter.Write Method (String, Object)
Writes out a formatted string, using the same semantics as specified.
Parameters
- format
-
Type:
System.String
The formatting string.
- arg0
-
Type:
System.Object
The object to write into the formatted string.
IndentedTextWriter.Write Method (String, Object, Object)
Writes out a formatted string, using the same semantics as specified.
Parameters
- format
-
Type:
System.String
The formatting string to use.
- arg0
-
Type:
System.Object
The first object to write into the formatted string.
- arg1
-
Type:
System.Object
The second object to write into the formatted string.
IndentedTextWriter.Write Method (String, Object[])
Writes out a formatted string, using the same semantics as specified.
Parameters
- format
-
Type:
System.String
The formatting string to use.
- arg
-
Type:
System.Object[]
The argument array to output.