Extrait de code : implémentation d’une instance de méthode BulkSpecificFinder
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 vous pouvez implémenter une instance de méthode BulkSpecificFinder dans un assembly de connectivité .NET et dans un service Web.
Exemple pour un assembly de connectivité .NET
public Customer[] GetBulkCustomersByID(String[] ids)
{
List<Customer> custList = new List<Customer>();
foreach (Customer customer in customers)
{
if (Array.Find(ids, id => id == customer.CustomerID &&
!customer.IsDeleted) != null)
{
custList.Add(customer);
}
}
return custList.ToArray();
}
Exemple pour un service Web ASP.NET
[WebMethod]
public Customer[] GetBulkCustomersByID(String[] ids)
{
List<Customer> custList = new List<Customer>();
foreach (Customer customer in customers)
{
if (Array.Find(ids, id => id == customer.CustomerID &&
!customer.IsDeleted) != null)
{
custList.Add(customer);
}
}
return custList.ToArray();
}
Exemple pour un service WCF
Le code suivant montre la définition de l’opération dans l’interface du contrat de service.
[OperationContract]
Customer[] GetBulkCustomersByID(string[] ids);
L’exemple suivant montre l’implémentation de l’instance de méthode.
public Customer[] GetBulkCustomersByID(String[] ids)
{
List<Customer> custList = new List<Customer>();
foreach (Customer customer in customers)
{
if (Array.Find(ids, id => id == customer.CustomerID && !customer.IsDeleted) != null)
{
custList.Add(customer);
}
}
return custList.ToArray();
}