IWMSOutgoingDistributionConnection.UserName (Visual Basic .NET)
.gif)
| Previous | Next |
IWMSOutgoingDistributionConnection.UserName (Visual Basic .NET)
The UserName property retrieves the authenticated name of the client.
Syntax
String = IWMSOutgoingDistributionConnection.UserName
Property Value
A String containing the name.
Remarks
This property is read-only.
Example Code
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub GetClientName()
' Declare variables.
Dim Server As WMSServer
Dim Connections As IWMSOutgoingDistributionConnections
Dim Connection As IWMSOutgoingDistributionConnection
Dim strName As String
Try
' Create the WMSServer object.
Server = New WMSServer()
' Retrieve the IWMSOutgoingDistributionConnections object.
Connections = Server.OutgoingDistributionConnections
' Retrieve information about each distribution connection.
For Each Connection In Connections
' Retrieve the user name of the client.
strName = Connection.UserName
Next
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 |