Beispiel #1
0
 /// <nodoc />
 public PluginResponseResult(PluginResponseState state, string requestId, uint attempts, Failure failure)
 {
     State     = state;
     m_failure = failure;
     Attempts  = attempts;
     RequestId = requestId;
 }
Beispiel #2
0
 /// <nodoc />
 public PluginResponseResult(T value, PluginResponseState state, string requestId, uint attempts)
 {
     m_value   = value;
     State     = state;
     Attempts  = attempts;
     RequestId = requestId;
 }