Lawo.EmberPlusSharp.S101.MessageEncodingStream.WriteUnframedAsync C# (CSharp) Method

WriteUnframedAsync() private method

private WriteUnframedAsync ( byte buffer, int offset, int count, CancellationToken cancellationToken ) : Task
buffer byte
offset int
count int
cancellationToken System.Threading.CancellationToken
return Task
        private Task WriteUnframedAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken) =>
            this.framingStream.WriteAsync(buffer, offset, count, cancellationToken);
    }