Class PromiseResult<T1, T2, T3>
A promise to return three results
Inheritance
System.Object
PromiseResult<T1, T2, T3>
Inherited Members
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()
Namespace: Innovator.Client
Assembly: Innovator.Client.dll
Syntax
public class PromiseResult<T1, T2, T3>
Type Parameters
Name | Description |
---|---|
T1 | The type of the 1. |
T2 | The type of the 2. |
T3 | The type of the 3. |
Constructors
| Improve this Doc View SourcePromiseResult(T1, T2, T3)
Initializes a new instance of the PromiseResult<T1, T2, T3> class.
Declaration
public PromiseResult(T1 result1, T2 result2, T3 result3)
Parameters
Type | Name | Description |
---|---|---|
T1 | result1 | The result1. |
T2 | result2 | The result2. |
T3 | result3 | The result3. |
Properties
| Improve this Doc View SourceResult1
Gets the first result.
Declaration
public T1 Result1 { get; }
Property Value
Type | Description |
---|---|
T1 |
Result2
Gets the second result.
Declaration
public T2 Result2 { get; }
Property Value
Type | Description |
---|---|
T2 |
Result3
Gets the third result.
Declaration
public T3 Result3 { get; }
Property Value
Type | Description |
---|---|
T3 |