IWMSServer.UnicastDataSinks (C#)

banner art

Previous Next

IWMSServer.UnicastDataSinks (C#)

The UnicastDataSinks property retrieves an IWMSPlugins object containing a collection of unicast data sink plug-ins that can be used to send data packets to a client.

Syntax

  IWMSPlugins = IWMSServer.UnicastDataSinks;

Property Value

An IWMSPlugins object containing the collection of data sink plug-ins.

Remarks

This property is read-only.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;









    // Retrieve the IWMSPlugins interface
    // containing unicast data sink plug-ins.
    Plugins = Server.UnicastDataSinks;
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Previous Next