IWait<C,T> Interface

Definition

public interface IWait<C,out T> : ICloneable, Microsoft.Bot.Builder.Internals.Fibers.IWait<C>
type IWait<'C, 'T> = interface
    interface IWait<'C>
    interface IWait
    interface ICloneable
Public Interface IWait(Of C, Out T)
Implements ICloneable, IWait(Of C)

Type Parameters

C
T
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Derived
Implements

Properties

ItemType

The type of the item parameter for the rest delegate.

(Inherited from IWait)
Need

The stage of the wait.

(Inherited from IWait)
NeedType

The static type of the wait item.

(Inherited from IWait)
Rest

The rest delegate method.

(Inherited from IWait)

Methods

Fail(Exception)

Mark this wait as satisfied with this fail exception.

(Inherited from IWait)
PollAsync(IFiber<C>, C, CancellationToken) (Inherited from IWait<C>)
Post<T>(T)

Mark this wait as satisfied with this item.

(Inherited from IWait)
Wait(Rest<C,T>)

Extension Methods

CloneTyped<C>(IWait<C>)
ValidateNeed(IWait, Need)

Applies to