SecondaryBuffer.Clone Method

Language:

Note: This documentation is preliminary and is subject to change.

Duplicates the SecondaryBuffer object.

Definition

Visual Basic .NET Public Function Clone( _
    ByVal parent As Device _
) As SecondaryBuffer
C# public SecondaryBuffer Clone(
    Device parent
);
Managed C++ public: SecondaryBuffer* Clone(
    Device *parent
);
JScript .NET public function Clone(
    parent : Device
) : SecondaryBuffer;

Parameters

parent Microsoft.DirectX.DirectSound.Device. The Device object associated with the SecondaryBuffer object.

Return Value

Microsoft.DirectX.DirectSound.SecondaryBuffer . A SecondaryBuffer object that represents the cloned SecondaryBuffer object.

Remarks

This method is not valid for buffers created with BufferCaps.ControlEffects set to true.

Initially, the duplicate buffer will have the same parameters as the original buffer. However, the application can change the parameters of each buffer independently, and each can be played or stopped without affecting the other.

Exceptions
AllocatedException The request failed because resources, such as a priority level, were already in use by another caller.
ArgumentException Leave Site An invalid parameter was passed to the method.
ArgumentNullException Leave Site The parent parameter is null.
InvalidCallException The method call is invalid for the current state of this object.


© 2004 Microsoft Corporation. All rights reserved. Terms of use.

Feedback? Please provide us with your comments on this topic.