IStreamFactoryCreateStreamAsync Method |
Creates a stream.
Namespace:
MongoDB.Driver.Core.Connections
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax Task<Stream> CreateStreamAsync(
EndPoint endPoint,
CancellationToken cancellationToken
)
Function CreateStreamAsync (
endPoint As EndPoint,
cancellationToken As CancellationToken
) As Task(Of Stream)
abstract CreateStreamAsync :
endPoint : EndPoint *
cancellationToken : CancellationToken -> Task<Stream>
Parameters
- endPoint
- Type: System.NetEndPoint
The end point. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskStreamA Task whose result is the Stream.
See Also