in src/PSDocs.Azure/Pipeline/TemplatePipeline.cs [192:196]
private static bool TryStringProperty(JObject o, string propertyName, out string value)
{
value = null;
return o != null && o.TryGetValue(propertyName, out var token) && TryString(token, out value);
}