Extrait de code : implémentation d’une méthode AccessChecker
Dernière modification : lundi 19 avril 2010
S’applique à : SharePoint Server 2010
Dans cet article
Exemple pour un assembly de connectivité .NET
Exemple pour un service Web ASP.NET
Exemple pour un service WCF
Les exemples de code suivants montrent comment implémenter une instance de méthode AccessChecker dans un assembly de connectivité .NET et dans un service Web.
Exemple pour un assembly de connectivité .NET
public int CustomerCheckAccess(String customerid, String username)
{
if (username == "xyz" && customerid.StartsWith("priv"))
return 1;
else
return 0;
}
Exemple pour un service Web ASP.NET
[WebMethod]
public int CustomerCheckAccess(String customerid, String username)
{
if (username == "xyz" && customerid.StartsWith("priv"))
return 1;
else
return 0;
}
Exemple pour un service WCF
Le code suivant montre la définition de l’opération dans l’interface du contrat de service.
[OperationContract]
int CustomerCheckAccess(String customerid, String username);
L’exemple suivant illustre l’implémentation de l’instance de la méthode.
public int CustomerCheckAccess(String customerid, String username)
{
if (username == "xyz" && customerid.StartsWith("priv"))
return 1;
else
return 0;
}