Share via


IWMSAdminUnicastSink.OptimalPacketSize (C#)

banner art

Previous Next

IWMSAdminUnicastSink.OptimalPacketSize (C#)

The OptimalPacketSize property specifies and retrieves the optimal packet size sent by the unicast data sink.

Syntax

  IWMSAdminUnicastSink
  .OptimalPacketSize = int;
int = IWMSAdminUnicastSink.OptimalPacketSize;

Property Value

int containing the optimal packet size.

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 the optimal packet size 
    // sent by the unicast data sink.
    AdminUnicastSink.OptimalPacketSize = 1500;
}
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