PassportIdentity.GetDomainFromMemberName Method

Returns the Passport domain from the member name string.

Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)

'Declaration
Public Function GetDomainFromMemberName ( _
	strMemberName As String _
) As String
'Usage
Dim instance As PassportIdentity
Dim strMemberName As String
Dim returnValue As String

returnValue = instance.GetDomainFromMemberName(strMemberName)
public String GetDomainFromMemberName (
	String strMemberName
)
public function GetDomainFromMemberName (
	strMemberName : String
) : String
Not applicable.

Parameters

strMemberName

The name of the Passport member

Return Value

The Passport domain for the specified member.

For more information, see the Passport SDK documentation in the MSDN Library at http://msdn.microsoft.com/library.

' Declare new PassportIdendity object as variable newPass.
Dim newPass As System.Web.Security.PassportIdentity = New System.Web.Security.PassportIdentity()
' Get the URL for the Passport Information page using the 
' GetDomainAttribute(attributeName, LocaleID, Domain) method.
' LocaleID 1033 = English-USA
' Create a string with the name of the Passport domain associated with the current UserName.
Dim sPassportDomain As String = newPass.GetDomainFromMemberName(newPass.Name)
Dim sInfoURL As String = newPass.GetDomainAttribute("PassportInformationCenter", 1033, sPassportDomain)

// Declare new PassportIdendity object as variable newPass.
System.Web.Security.PassportIdentity newPass = 
    new System.Web.Security.PassportIdentity();
// Get the name of the Passport domain associated with the current 
// UserName.
String passportDomain = newPass.GetDomainFromMemberName(
    newPass.get_Name());

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: