ServerStub.GetMemberName - Méthode
Returns a normalized member name given an inputted member name..
Espace de noms : Microsoft.SharePoint.Client
Assembly : Microsoft.SharePoint.Client.ServerRuntime (dans Microsoft.SharePoint.Client.ServerRuntime.dll)
Syntaxe
'Déclaration
Protected Function GetMemberName ( _
memberName As String, _
proxyContext As ProxyContext _
) As String
'Utilisation
Dim memberName As String
Dim proxyContext As ProxyContext
Dim returnValue As String
returnValue = Me.GetMemberName(memberName, _
proxyContext)
protected string GetMemberName(
string memberName,
ProxyContext proxyContext
)
Paramètres
memberName
Type : System.StringThe name of the member to normalize.
proxyContext
Type : Microsoft.SharePoint.Client.ProxyContextContains information about the general state of a client request and response operation.
Valeur renvoyée
Type : System.String
The normalized member name.
Remarques
For example, if the member name is GetById, the user specifies "getbyid" in the URL. This method will return “GetById”, which is the normalized member name. For REST queries, the member name is case insensitive.