Share via


IWMSCommandContext.EraseCommandRequest (Visual Basic .NET)

banner art

Previous Next

IWMSCommandContext.EraseCommandRequest (Visual Basic .NET)

The EraseCommandRequest method deletes a client request by erasing all of the name-value pairs in the command context.

Syntax

  

Parameters

This method takes no parameters.

Return Values

This method does not return a value.

If this method fails, it throws an exception.

Number Description
0x80004005 No client request is associated with this command context.

Example Code

Dim CmdContext As IWMSCommandContext
Dim pUnknown As IntPtr

Try
    m_ClassFactory.AllocIWMSCommandContext( _
                                       GetType(IWMSCommandContext).GUID, _
                                       pUserContext, pUnknown)
    CmdContext = Marshal.GetTypedObjectForIUnknown(pUnknown, _
                                           GetType(IWMSCommandContext))
    CmdContext.EraseCommandRequest()

Catch e As Exception
    ' TODO: Handle exceptions.
End Try

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003, Enterprise Edition; Windows Server 2003, Datacenter Edition; Windows Server 2008.

See Also

Previous Next