IndentedTextWriter.Write Method

 

Writes the specified value to the text stream.

Namespace:   System.Data.Entity.Migrations.Utilities
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodWrite(Boolean)

Writes the text representation of a Boolean value to the text stream.(Overrides TextWriter.Write(Boolean).)

System_CAPS_pubmethodWrite(Char)

Writes a character to the text stream.(Overrides TextWriter.Write(Char).)

System_CAPS_pubmethodWrite(Char[])

Writes a character array to the text stream.(Overrides TextWriter.Write(Char[]).)

System_CAPS_pubmethodWrite(Char[], Int32, Int32)

Writes a subarray of characters to the text stream.(Overrides TextWriter.Write(Char[], Int32, Int32).)

System_CAPS_pubmethodWrite(Decimal)

(Inherited from TextWriter.)

System_CAPS_pubmethodWrite(Double)

Writes the text representation of a Double to the text stream.(Overrides TextWriter.Write(Double).)

System_CAPS_pubmethodWrite(Int32)

Writes the text representation of an integer to the text stream.(Overrides TextWriter.Write(Int32).)

System_CAPS_pubmethodWrite(Int64)

Writes the text representation of an 8-byte integer to the text stream.(Overrides TextWriter.Write(Int64).)

System_CAPS_pubmethodWrite(Object)

Writes the text representation of an object to the text stream.(Overrides TextWriter.Write(Object).)

System_CAPS_pubmethodWrite(Single)

Writes the text representation of a Single to the text stream.(Overrides TextWriter.Write(Single).)

System_CAPS_pubmethodWrite(String)

Writes the specified string to the text stream.(Overrides TextWriter.Write(String).)

System_CAPS_pubmethodWrite(String, Object)

Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object).)

System_CAPS_pubmethodWrite(String, Object, Object)

Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object, Object).)

System_CAPS_pubmethodWrite(String, Object, Object, Object)

(Inherited from TextWriter.)

System_CAPS_pubmethodWrite(String, Object[])

Writes out a formatted string, using the same semantics as specified.(Overrides TextWriter.Write(String, Object[]).)

System_CAPS_pubmethodWrite(UInt32)

(Inherited from TextWriter.)

System_CAPS_pubmethodWrite(UInt64)

(Inherited from TextWriter.)


IndentedTextWriter.Write Method (Boolean)

Writes the text representation of a Boolean value to the text stream.

public override void Write(
	bool value
)

Parameters

value
Type: System.Boolean

The Boolean value to write.


IndentedTextWriter.Write Method (Char)

Writes a character to the text stream.

public override void Write(
	char value
)

Parameters

value
Type: System.Char

The character to write.


IndentedTextWriter.Write Method (Char[])

Writes a character array to the text stream.

public override void Write(
	char[] buffer
)

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.

public override void Write(
	char[] buffer,
	int index,
	int count
)

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.

public override void Write(
	double value
)

Parameters

value
Type: System.Double

The double to write.


IndentedTextWriter.Write Method (Int32)

Writes the text representation of an integer to the text stream.

public override void Write(
	int value
)

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.

public override void Write(
	long value
)

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.

public override void Write(
	object value
)

Parameters

value
Type: System.Object

The object to write.


IndentedTextWriter.Write Method (Single)

Writes the text representation of a Single to the text stream.

public override void Write(
	float value
)

Parameters

value
Type: System.Single

The single to write.


IndentedTextWriter.Write Method (String)

Writes the specified string to the text stream.

public override void Write(
	string value
)

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.

public override void Write(
	string format,
	object arg0
)

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.

public override void Write(
	string format,
	object arg0,
	object arg1
)

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.

public override void Write(
	string format,
	params object[] arg
)

Parameters

format
Type: System.String

The formatting string to use.

arg
Type: System.Object[]

The argument array to output.