AbstractSessionOutputBuffer.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
| Name | Description |
|---|---|
| Write(Byte[]) |
Writes bytes from a buffer to the session output buffer. |
| Write(Int32) |
Writes a single byte to the session output buffer. |
| Write(Byte[], Int32, Int32) |
Writes a range of bytes to the session output buffer. |
Write(Byte[])
Writes bytes from a buffer to the session output buffer.
[Android.Runtime.Register("write", "([B)V", "GetWrite_arrayBHandler")]
public virtual void Write(byte[]? b);
[<Android.Runtime.Register("write", "([B)V", "GetWrite_arrayBHandler")>]
abstract member Write : byte[] -> unit
override this.Write : byte[] -> unit
Parameters
- b
- Byte[]
The buffer containing bytes to write.
Implements
- Attributes
Remarks
Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.
Applies to
Write(Int32)
Writes a single byte to the session output buffer.
[Android.Runtime.Register("write", "(I)V", "GetWrite_IHandler")]
public virtual void Write(int b);
[<Android.Runtime.Register("write", "(I)V", "GetWrite_IHandler")>]
abstract member Write : int -> unit
override this.Write : int -> unit
Parameters
- b
- Int32
The byte value to write.
Implements
- Attributes
Remarks
Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.
Applies to
Write(Byte[], Int32, Int32)
Writes a range of bytes to the session output buffer.
[Android.Runtime.Register("write", "([BII)V", "GetWrite_arrayBIIHandler")]
public virtual void Write(byte[]? b, int off, int len);
[<Android.Runtime.Register("write", "([BII)V", "GetWrite_arrayBIIHandler")>]
abstract member Write : byte[] * int * int -> unit
override this.Write : byte[] * int * int -> unit
Parameters
- b
- Byte[]
The buffer containing bytes to write.
- off
- Int32
The zero-based offset in the buffer.
- len
- Int32
The number of bytes to write.
Implements
- Attributes
Remarks
Portions of this page are based on work created and shared by the Apache Software Foundation and used under the terms of the Apache License, Version 2.0.