Item Property
Gets a pipeline from the collection based on the pipeline name.
Namespace: Microsoft.CommerceServer.Runtime.Pipelines
Assembly: Microsoft.CommerceServer.Runtime (in Microsoft.CommerceServer.Runtime.dll)
Syntax
'Declaration
Public ReadOnly Property Item ( _
pipeName As String _
) As PipelineBase
'Usage
Dim instance As PipelineCollection
Dim pipeName As String
Dim value As PipelineBase
value = instance.Item(pipeName)
public PipelineBase Item[
string pipeName
] { get; }
public:
property PipelineBase^ Item[String^ pipeName] {
PipelineBase^ get (String^ pipeName);
}
JScript does not support indexed properties.
Parameters
- pipeName
Type: System..::.String
The name of the pipeline to retrieve.
Property Value
Type: Microsoft.CommerceServer.Runtime.Pipelines..::.PipelineBase
The pipeline corresponding to the given name, or nullNothingnullptra null reference (Nothing in Visual Basic) if the requested pipeline is not in the collection.
Remarks
Retrieves a pipeline from the collection based on the pipeline name. The pipeline name is compared in a case-insensitive fashion.
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.