OpenTokApi.Core.OpenTok.CleanupKey C# (CSharp) Method

CleanupKey() private static method

private static CleanupKey ( string key ) : string
key string
return string
        private static string CleanupKey(string key)
        {
            var startsWith = new[] { "echoSuppression", "multiplexer", "p2p" };
            return startsWith.Any(key.StartsWith) ? key.Replace("_", ".") : key;
        }