We were unable to locate this content in ja-jp.
Here is the same content in en-us.
Public MustInherit Class Pipeline Implements IDisposable
public abstract class Pipeline : IDisposable
public ref class Pipeline abstract : IDisposable
public abstract class Pipeline implements IDisposable
For an example of applications that use this class, see the following topics in the Windows PowerShell Programmer's Guide:
Configuring a Runspace Using RunspaceConfiguration
Configuring a Runspace Using a PowerShell Snap-in
Pipelines are created within the context of a runspace. Pipelines can be created using the following methods:
CreatePipeline: Overloaded method that can be used to create a pipeline by itself or to create a pipeline with a valid command string.
CreateNestedPipeline: Overloaded method that can be used to create a nested pipeline by itself or to create a nested pipeline with a valid command string.
It is permitted to derive from this class. However, there is no established scenario for doing this, nor has deriving from the class been tested.