OrderGroupSearchOptions.FetchOrderFormInformation Property (BCL)

The FetchOrderFormInformation property is a read/write Boolean that specifies whether order form information should be retrieved as part of the search operation, or not.

Definition

[Visual Basic .NET]

Public Property FetchOrderFormInformation As System.Boolean

[C#]

public System.Boolean FetchOrderFormInformation{get; set;} 

Property Value

The order form information.

Remarks

The default value for this property is False.

Example

Use the following code to perform a search based on the ordergroup_id, that will return the entire order.

[Visual Basic .NET]

  Dim Options As New OrderGroupSearchOptions()
  Options.FetchOrderFormInformation = True
  Options.Columns.Add("OrderGroup.[ordergroup_id]")

[C#]

  OrderGroupSearchOptions Options = new OrderGroupSearchOptions();
  Options.FetchOrderFormInformation = true;
  Options.Columns.Add("OrderGroup.[ordergroup_id]");

Requirements

Namespace: Microsoft.CommerceServer.Runtime.Orders

Platforms: Windows 2000, Windows Server 2003

Assembly: Microsoft.CommerceServer.Runtime.dll

Copyright © 2005 Microsoft Corporation.
All rights reserved.