IWMSAdminNetworkDataSourcePlugin.SetProxyCredentials (Visual Basic .NET)

banner art

Previous Next

IWMSAdminNetworkDataSourcePlugin.SetProxyCredentials (Visual Basic .NET)

The SetProxyCredentials method specifies the user name and password used for authentication on the proxy server.

Syntax

  IWMSAdminNetworkDataSourcePlugin
  .SetProxyCredentials(
  bstrProtocol, bstrName, bstrPassword, fPersist
  )

Parameters

bstrProtocol

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

bstrName

[in] String containing the user name used for authentication on the proxy server.

bstrPassword

[in] String containing the password used for authentication on the proxy server.

fPersist

[in] Boolean value indicating whether the proxy credentials should be saved.

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

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

Private Sub SetNamePassword()

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

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

    ' Set the user name and password used to respond
    ' to authentication challenges.
    AdminNetDataSrc.SetProxyCredentials("RTSP", "UserName", "Password", True)

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