Share via


IWMSAdminUnicastSink.UDPEnabled (C#)

banner art

Previous Next

IWMSAdminUnicastSink.UDPEnabled (C#)

The UDPEnabled property specifies and retrieves a Boolean value indicating whether the unicast data sink can use UDP when selecting a streaming protocol.

Syntax

  IWMSAdminUnicastSink
  .UDPEnabled = bool;
bool = IWMSAdminUnicastSink.UDPEnabled;

Property Value

A bool indicating whether UDP is enabled.

Example Code

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

// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSAdminUnicastSink AdminUnicastSink;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the plug-in to be configured.
    Plugin = Server.UnicastDataSinks[
                        "WMS Unicast Data Writer"];

    // Retrieve the custom interface of the plug-in.
    AdminUnicastSink =
        (IWMSAdminUnicastSink)Plugin.CustomInterface;

    // Set a Boolean value indicating whether UDP
    // can be used as a streaming protocol.
    AdminUnicastSink.UDPEnabled = true;
}
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