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 |
IWMSAdminNetworkDataSourcePlugin.SetProxySettings (C#)
The SetProxySettings method specifies an enumeration value indicating the proxy mode for a particular protocol.
Syntax
IWMSAdminNetworkDataSourcePlugin .SetProxySettings( bstrProtocol, newVal );
Parameters
bstrProtocol
[in] string containing the protocol. This must be HTTP or RTSP.
newVal
[in] Member of the WMS_PROXY_SETTINGS enumeration type indicating the proxy mode. This must be one of the following values.
| Value | Description |
| WMS_PROXY_SETTING_NONE | There is no proxy server. |
| WMS_PROXY_SETTING_MANUAL | A proxy server must be defined by calling the SetProxyHostName and SetProxyPort properties. |
Return Values
This method does not return a value.
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;
// Set proxy mode information for the RTSP protocol.
AdminNetDataSrc.SetProxySettings("RTSP",
WMS_PROXY_SETTINGS.
WMS_PROXY_SETTING_MANUAL);
}
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
- IWMSAdminNetworkDataSourcePlugin Object (C#)
- IWMSAdminNetworkDataSourcePlugin.get_ProxySettings (C#)
- IWMSAdminNetworkDataSourcePlugin.SetProxyHostName (C#)
- IWMSAdminNetworkDataSourcePlugin.SetProxyPort (C#)
| Previous | Next |