Akka.Routing.ActorRefRoutee.Ask C# (CSharp) Method

Ask() public method

public Ask ( object message, System.TimeSpan timeout ) : Task
message object
timeout System.TimeSpan
return Task
        public override Task<object> Ask(object message, TimeSpan? timeout)
        {
            return Actor.Ask(message, timeout);
        }