Click or drag to resize
FuturesAskT Method (ICanTell, Object, NullableTimeSpan)

[Missing <summary> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public static Task<T> Ask<T>(
	this ICanTell self,
	Object message,
	Nullable<TimeSpan> timeout = null
)

Parameters

self
Type: Akka.ActorICanTell

[Missing <param name="self"/> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

message
Type: SystemObject

[Missing <param name="message"/> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

timeout (Optional)
Type: SystemNullableTimeSpan

[Missing <param name="timeout"/> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

Return Value

Type: TaskT

[Missing <returns> documentation for "M:Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ICanTell. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also