Share via


IWMSAdminNetworkDataSourcePlugin.get_ProxySettings (C#)

banner art

Previous Next

IWMSAdminNetworkDataSourcePlugin.get_ProxySettings (C#)

The get_ProxySettings method retrieves an enumeration value indicating the proxy mode for a particular protocol.

Syntax

  WMS_PROXY_SETTINGS = IWMSAdminNetworkDataSourcePlugin.get_ProxySettings(bstrProtocol);

Parameters

bstrProtocol

[in] string containing the protocol. This must be HTTP or RTSP.

Return Values

This method returns a member of the WMS_PROXY_SETTINGS enumeration type. This must be one of the following values.

Value Description
WMS_PROXY_SETTING_NONE There is no proxy.
WMS_PROXY_SETTING_MANUAL A proxy must be defined by calling the get_ProxyHostName and get_ProxyPort properties.

If this method fails, it throws an exception.

Number Description
0xC00D002B The bstrProtocol parameter must be HTTP or RTSP.

Example Code

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

// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSAdminNetworkDataSourcePlugin AdminNetDataSrc;

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

    // Retrieve the plug-in to be configured.
    Plugin = Server.DataSources[
                      "WMS Network Data Source"];

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

    // Retrieve proxy mode information for the RTSP protocol.
    WMS_PROXY_SETTINGS psSettings =
                       AdminNetDataSrc.get_ProxySettings("RTSP");
}
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