/// <summary>
 /// Attempts to get a failover channel for the specified failed channel.
 /// Note that a raw channel is returned, not a decorated proxy.
 /// </summary>
 /// <param name="failedChannel"></param>
 /// <returns></returns>
 protected internal IClientChannel GetFailoverChannel(IClientChannel failedChannel)
 {
     return(_channelProvider.GetFailover(failedChannel));
 }