Code Snippet: Implementing a BulkIdEnumerator
Applies to: SharePoint Server 2010
In this article
Example for a .NET Connectivity Assembly
Example for an ASP.NET Web Service
Example for a WCF Service
The following code examples show how you can implement a BulkIdEnumerator method instance in a .NET connectivity assembly and in a Web service.
Example for a .NET Connectivity Assembly
public CustomerVersion[] GetBulkCustomerIDs(DateTime modifiedafter)
{
List<CustomerVersion> custverList = new List<CustomerVersion>();
foreach (Customer customer in customers)
{
if (customer.ModifiedDate > modifiedafter && !customer.IsDeleted)
{
custverList.Add(new CustomerVersion()
{
CustomerID = customer.CustomerID,
Version = customer.Version
});
}
}
return custverList.ToArray();
}
Example for an ASP.NET Web Service
[WebMethod]
public CustomerVersion[] GetBulkCustomerIDs(DateTime modifiedafter)
{
List<CustomerVersion> custverList = new List<CustomerVersion>();
foreach (Customer customer in customers)
{
if (customer.ModifiedDate > modifiedafter && !customer.IsDeleted)
{
custverList.Add(new CustomerVersion()
{
CustomerID = customer.CustomerID,
Version = customer.Version
});
}
}
return custverList.ToArray();
}
Example for a WCF Service
The following code shows the operation definition in the service contract interface.
[OperationContract]
CustomerVersion[] GetBulkCustomerIDs(DateTime modifiedafter);
The following example shows the implementation of the method instance.
public CustomerVersion[] GetBulkCustomerIDs(DateTime modifiedafter)
{
List<CustomerVersion> custverList = new List<CustomerVersion>();
foreach (Customer customer in customers)
{
if (customer.ModifiedDate > modifiedafter && !customer.IsDeleted)
{
custverList.Add(new CustomerVersion()
{
CustomerID = customer.CustomerID,
Version = customer.Version
});
}
}
return custverList.ToArray();
}