System.ServiceModel.IAsyncCommunicationObject
namespace System.ServiceModel
{
public interface IAsyncCommunicationObject : ICommunicationObject
{
Task CloseAsync(TimeSpan timeout);
Task OpenAsync(TimeSpan timeout);
}
}