SearchBaskets Method (SearchClause)
Returns a DataSet containing baskets that match a supplied search criteria.
Namespace: Microsoft.CommerceServer.Orders
Assembly: Microsoft.CommerceServer.Orders.CrossTierTypes (in Microsoft.CommerceServer.Orders.CrossTierTypes.dll)
Syntax
'Declaration
Public Function SearchBaskets ( _
searchClause As SearchClause _
) As DataSet
'Usage
Dim instance As BasketManager
Dim searchClause As SearchClause
Dim returnValue As DataSet
returnValue = instance.SearchBaskets(searchClause)
public DataSet SearchBaskets(
SearchClause searchClause
)
public:
DataSet^ SearchBaskets(
SearchClause^ searchClause
)
public function SearchBaskets(
searchClause : SearchClause
) : DataSet
Parameters
- searchClause
Type: Microsoft.CommerceServer..::.SearchClause
XML blob representing the search criteria.
Return Value
Type: System.Data..::.DataSet
The DataSet containing the baskets that match the search clause.
Exceptions
Exception | Condition |
---|---|
ArgumentException | The specified search clause is not a well formed search clause. |
NotAuthorizedException | The user does not have permission to perform this operation. |
TimeoutException | Thrown if an SQL command timeout occurs. |
Remarks
Returns a DataSet containing baskets that match a supplied search criteria.
The DataSet contains just the top level properties from the Basket class. It contains a DataTable named Basket with columns named as the properties to return. The DataSet does not contain all the records that match the criteria. It is populated with the pages the user asks for using the search options.
In order to perform a SearchBaskets, the user must have the OrdersViewer permissions. See Orders System Roles [CS06] for more information about the specific roles in the Order System.
Some order system APIs support distributed transactions. If a cookie with a valid transaction is found the order system enlists as part of that transaction. If a valid transaction is not found the order system initiates a new transaction.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.