MseSourceBuffer.AppendStream Method

Definition

Overloads

AppendStream(IInputStream)

Appends a stream to the MseSourceBuffer object.

AppendStream(IInputStream, UInt64)

Appends a stream to the MseSourceBuffer object.

AppendStream(IInputStream)

Appends a stream to the MseSourceBuffer object.

public:
 virtual void AppendStream(IInputStream ^ stream) = AppendStream;
/// [Windows.Foundation.Metadata.Overload("AppendStream")]
void AppendStream(IInputStream const& stream);
[Windows.Foundation.Metadata.Overload("AppendStream")]
public void AppendStream(IInputStream stream);
function appendStream(stream)
Public Sub AppendStream (stream As IInputStream)

Parameters

stream
IInputStream

The stream to append.

Attributes

See also

Applies to

AppendStream(IInputStream, UInt64)

Appends a stream to the MseSourceBuffer object.

public:
 virtual void AppendStream(IInputStream ^ stream, unsigned long long maxSize) = AppendStream;
/// [Windows.Foundation.Metadata.Overload("AppendStreamMaxSize")]
void AppendStream(IInputStream const& stream, uint64_t const& maxSize);
[Windows.Foundation.Metadata.Overload("AppendStreamMaxSize")]
public void AppendStream(IInputStream stream, ulong maxSize);
function appendStream(stream, maxSize)
Public Sub AppendStream (stream As IInputStream, maxSize As ULong)

Parameters

stream
IInputStream

The stream to append.

maxSize
UInt64

unsigned long long

uint64_t

The maximum size of the stream.

Attributes

See also

Applies to