HttpResponseStreamWriter.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Write(Char[], Int32, Int32) | |
Write(String) | |
Write(ReadOnlySpan<Char>) | |
Write(Char) |
Write(Char[], Int32, Int32)
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
Writes a subarray of characters to the text stream.
public:
override void Write(cli::array <char> ^ values, int index, int count);
public override void Write (char[] values, int index, int count);
override this.Write : char[] * int * int -> unit
Public Overrides Sub Write (values As Char(), index As Integer, count As Integer)
Parameters
- values
- Char[]
- index
- Int32
- count
- Int32
Applies to
Write(String)
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
Writes a string to the text stream.
public:
override void Write(System::String ^ value);
public override void Write (string value);
public override void Write (string? value);
override this.Write : string -> unit
Public Overrides Sub Write (value As String)
Parameters
- value
- String
Applies to
Write(ReadOnlySpan<Char>)
- Source:
- HttpResponseStreamWriter.cs
Writes a character span to the text stream.
public:
override void Write(ReadOnlySpan<char> value);
public override void Write (ReadOnlySpan<char> value);
override this.Write : ReadOnlySpan<char> -> unit
Public Overrides Sub Write (value As ReadOnlySpan(Of Char))
Parameters
- value
- ReadOnlySpan<Char>
Applies to
Write(Char)
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
- Source:
- HttpResponseStreamWriter.cs
Writes a character to the text stream.
public:
override void Write(char value);
public override void Write (char value);
override this.Write : char -> unit
Public Overrides Sub Write (value As Char)
Parameters
- value
- Char