UnityEngine.WSA.Toast.Create C# (CSharp) Method

Create() public static method

Create toast notification.

public static Create ( string xml ) : Toast
xml string XML document with tile data.
return Toast
        public static Toast Create(string xml)
        {
            int id = CreateToastXml(xml);
            if (id < 0)
            {
                return null;
            }
            return new Toast(id);
        }

Same methods

Toast::Create ( string image, string text ) : Toast