/// <inheritdoc />
        public string GetService(string remoteInterfaceType)
        {
            if (remoteInterfaceType == null)
            {
                throw new ArgumentNullException(nameof(remoteInterfaceType));
            }

            return(InterfaceChannelMap.SafeGet(remoteInterfaceType));
        }