IWMSAdminNetworkDataSourcePlugin.ProxySettings (Visual Basic .NET)

banner art

Previous Next

IWMSAdminNetworkDataSourcePlugin.ProxySettings (Visual Basic .NET)

The ProxySettings property retrieves an enumeration value indicating the proxy mode for a particular protocol.

Syntax

  WMS_PROXY_SETTINGS = IWMSAdminNetworkDataSourcePlugin.ProxySettings(bstrProtocol)

Parameters

bstrProtocol

[in] String containing the protocol.

Property Value

A member of a 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 ProxyHostName and ProxyPort properties.

If this property fails, it throws an exception.

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

Example Code

Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices

Private Sub GetProxyMode()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Plugin As IWMSPlugin
    Dim AdminNetDataSrc As IWMSAdminNetworkDataSourcePlugin
    Dim psSettings As WMS_PROXY_SETTINGS

Try
    ' Create the WMSServer object.
    Server = New WMSServer()

    ' Retrieve the plug-in to be configured.
    Plugin = Server.DataSources.Item("WMS Network Data Source")

    ' Retrieve the custom interface of the plug-in.
    AdminNetDataSrc = Plugin.CustomInterface

    ' Retrieve proxy mode information for
    ' the RTSP protocol.
    psSettings = AdminNetDataSrc.ProxySettings("RTSP")

Catch excCom As COMException
    ' TODO: Handle COM exceptions.
Catch exc As Exception
    ' TODO: Handle errors.
Finally
    ' TODO: Clean-up code goes here.
End Try

End Sub

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