PipelineExtensions.LoggingProcess クラス
次の処理についてログ出力を行います。
継承
System.Object
    PipelineExtensions.LoggingProcess
  実装
継承されたメンバー
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  名前空間: ExapisSOP.Core
アセンブリ: ExapisSOP.dll
構文
public class LoggingProcess : IProcess
  コンストラクタ 一覧
| 編集/提案 ソースを表示LoggingProcess()
型'PipelineExtensions.LoggingProcess'の新しいインスタンスを生成します。
宣言
public LoggingProcess()
  プロパティ 一覧
| 編集/提案 ソースを表示IsExecutable
この処理が実行可能な状態かどうかを表す論理値を取得します。
宣言
public bool IsExecutable { get; }
  プロパティ値
| 型 | 説明 | 
|---|---|
| System.Boolean | 
脚注
この値がfalseになった場合はInit(IContext)を呼び出さなければなりません。
NextProcess
この処理の次に実行すべき処理を取得または設定します。
宣言
public IProcess NextProcess { get; set; }
  プロパティ値
| 型 | 説明 | 
|---|---|
| IProcess | 
メソッド 一覧
| 編集/提案 ソースを表示Init(IContext)
この処理を実行可能な状態に初期化します。 IsExecutableをtrueに設定します。
宣言
public void Init(IContext context)
  引数
| 型 | 名前 | 説明 | 
|---|---|---|
| IContext | context | 現在の文脈情報です。  | 
      
InvokeAsync(IContext, Object)
この処理の実行を非同期的に開始します。
宣言
public Task<object> InvokeAsync(IContext context, object arg)
  引数
| 型 | 名前 | 説明 | 
|---|---|---|
| IContext | context | 実行に必要な文脈情報です。  | 
      
| System.Object | arg | 処理に必要な引数です。  | 
      
戻り値
| 型 | 説明 | 
|---|---|
| System.Threading.Tasks.Task<System.Object> | 戻り値を含むこの処理を表す非同期操作です。  | 
      
例外
| 型 | 条件 | 
|---|---|
| System.InvalidOperationException | IsExecutableがfalseの時に発生します。  |