Microsoft.Azure.Commands.Batch.Helpers.ContainsTagWithName C# (CSharp) Method

ContainsTagWithName() public static method

public static ContainsTagWithName ( string>.IDictionary tags, string value ) : bool
tags string>.IDictionary
value string
return bool
        public static bool ContainsTagWithName(IDictionary<string, string> tags, string value)
        {
            if (tags == null)
            {
                return false;
            }

            return tags.Keys.Contains(value, StringComparer.OrdinalIgnoreCase);
        }
    }