SPUtility.ResolvePrincipal method (SPWeb, String, SPPrincipalType, SPPrincipalSource, SPUserCollection, Boolean)
Resolves principal information into an SPPrincipalInfo object.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared Function ResolvePrincipal ( _
web As SPWeb, _
input As String, _
scopes As SPPrincipalType, _
sources As SPPrincipalSource, _
usersContainer As SPUserCollection, _
inputIsEmailOnly As Boolean _
) As SPPrincipalInfo
'Usage
Dim web As SPWeb
Dim input As String
Dim scopes As SPPrincipalType
Dim sources As SPPrincipalSource
Dim usersContainer As SPUserCollection
Dim inputIsEmailOnly As Boolean
Dim returnValue As SPPrincipalInfo
returnValue = SPUtility.ResolvePrincipal(web, _
input, scopes, sources, usersContainer, _
inputIsEmailOnly)
public static SPPrincipalInfo ResolvePrincipal(
SPWeb web,
string input,
SPPrincipalType scopes,
SPPrincipalSource sources,
SPUserCollection usersContainer,
bool inputIsEmailOnly
)
Parameters
web
Type: Microsoft.SharePoint.SPWebAn SPWeb object that represents a Web site.
input
Type: System.StringThe display name, e-mail address, or login name that identifies the principal.
scopes
Type: Microsoft.SharePoint.Utilities.SPPrincipalTypeAn SPPrincipalType mask that indicates the type of principal to be resolved.
sources
Type: Microsoft.SharePoint.Utilities.SPPrincipalSourceAn SPPrincipalSource mask that indicates the source to be used in the resolution process.
usersContainer
Type: Microsoft.SharePoint.SPUserCollectionAn SPUserCollection object that contains a set of principals.
inputIsEmailOnly
Type: System.BooleanA Boolean value that indicates the fields to be matched during the search for the principal. A value of true indicates that the match can be made by using only the e-mail address of a principal. A value of false indicates that a match can be made by using the any one of the display name, the e-mail address, or the login name of a principal.
Return value
Type: Microsoft.SharePoint.Utilities.SPPrincipalInfo
An SPPrincipalInfo object that represents principal information.