private static bool TryString()

in src/PSDocs.Azure/Pipeline/TemplatePipeline.cs [212:220]


        private static bool TryString(JToken token, out string value)
        {
            value = null;
            if (token == null || token.Type != JTokenType.String)
                return false;

            value = token.Value<string>();
            return true;
        }