Show / Hide Table of Contents

Class PromiseResult<T1, T2>

A promise to return two results

Inheritance
System.Object
PromiseResult<T1, T2>
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>
Type Parameters
Name Description
T1

The type of the 1.

T2

The type of the 2.

Constructors

| Improve this Doc View Source

PromiseResult(T1, T2)

Initializes a new instance of the PromiseResult<T1, T2> class.

Declaration
public PromiseResult(T1 result1, T2 result2)
Parameters
Type Name Description
T1 result1

The result1.

T2 result2

The result2.

Properties

| Improve this Doc View Source

Result1

Gets the first result.

Declaration
public T1 Result1 { get; }
Property Value
Type Description
T1
| Improve this Doc View Source

Result2

Gets the second result.

Declaration
public T2 Result2 { get; }
Property Value
Type Description
T2
  • Improve this Doc
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX