Share via


OrderPipeline Constructor (String, String, Boolean, String, Boolean, DebugContext) (BCL)

Use this method to create a new instance of the OrderPipeline class with the specified parameter values.

Definition

[Visual Basic .NET]

Public Sub New( _ByValname As System.String, _
  ByValpipelineConfigPath As System.String, _
  ByValloggingEnabled As System.Boolean, _
  ByVallogPath As System.String, _
  ByValtransactional As System.Boolean, _
  ByValdbgContext As DebugContext _
) 

[C#]

public OrderPipeline(System.Stringname,
  System.StringpipelineConfigPath,
  System.BooleanloggingEnabled,
  System.StringlogPath,
  System.Booleantransactional,
  DebugContextdbgContext);

Parameters

[Visual Basic .NET]

  • name
    The friendly name of the pipeline. May not be null.
  • pipelineConfigPath
    The fully qualified path to the .pcf file. May not be null.
  • loggingEnabled
    A value of True if pipeline logging should be enabled.
  • logPath
    A fully qualified path to the log file. May not be null if logging is enabled.
  • transactional
    A value of True if the pipeline should require running in a transaction.
  • dbgContext
    An instance of the DebugContext class. Determines how debugging and tracing information released by this class will be output to the user. May not be null.

[C#]

  • name
    The friendly name of the pipeline. May not be null.
  • pipelineConfigPath
    The fully qualified path to the .pcf file. May not be null.
  • loggingEnabled
    A value of True if pipeline logging should be enabled.
  • logPath
    A fully qualified path to the log file. May not be null if logging is enabled.
  • transactional
    A value of True if the pipeline should require running in a transaction.
  • dbgContext
    An instance of the DebugContext class. Determines how debugging and tracing information released by this class will be output to the user. May not be null.

Remarks

Throws an ArgumentNullException if any of the required arguments are null.

Requirements

Namespace: Microsoft.CommerceServer.Runtime.Pipelines

Platforms: Windows 2000, Windows Server 2003

Assembly: Microsoft.CommerceServer.Runtime.dll

See Also

Code to Read a Pipeline Collection and Display Its Properties

Copyright © 2005 Microsoft Corporation.
All rights reserved.