Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
IWMSClassObject.AllocIWMSPacket (Visual Basic .NET)
The AllocIWMSPacket method allocates an IWMSPacket object.
Syntax
Parameters
riid
Reference to a Guid specifying the data structure IID. This must be IID_IWMSPacket.
ppunk
Reference to an IntPtr containing a newly created IWMSPacket object.
Return Values
This method does not return a value.
If this method fails, it throws an exception.
| Number | Description |
| 0x80070057 | ppunk is null. |
| 0x8007000E | There is insufficient memory to complete the function. |
Example Code
Dim Packet As IWMSPacket
Dim pUnknown As IntPtr
Try
m_ClassFactory.AllocIWMSPacket( _
GetType(IWMSPacket).GUID, _
pUnknown)
Packet = Marshal.GetTypedObjectForIUnknown(pUnknown, _
GetType(IWMSPacket))
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 |