Microsoft.AspNet.WebHooks.SalesforceNotifications.GetNotificationsValueOrDefault C# (CSharp) Method

GetNotificationsValueOrDefault() private method

private GetNotificationsValueOrDefault ( string property ) : string
property string
return string
        private string GetNotificationsValueOrDefault(string property)
        {
            try
            {
                string value = _doc.Element(Soap + "Body").Element(Outbound + "notifications").Element(Outbound + property).Value;
                return value;
            }
            catch
            {
                return string.Empty;
            }
        }
    }