ChatterBox.Client.Common.Notifications.ToastNotificationLaunchArguments.FromXmlString C# (CSharp) Method

FromXmlString() public static method

public static FromXmlString ( string xmlString ) : ToastNotificationLaunchArguments
xmlString string
return ToastNotificationLaunchArguments
        public static ToastNotificationLaunchArguments FromXmlString(string xmlString)
        {
            ToastNotificationLaunchArguments result = null;
            try
            {
                result = XmlDataContractSerializationHelper.FromXml<ToastNotificationLaunchArguments>(xmlString);
            }
            catch(Exception)
            {
                result = null;
            }
            return result;
        }
    }