예제 #1
0
        public Document getSensitivePassword()
        {
            var document = new SensitiveContainer
            {
                Value = "Your password is 123456"
            };

            return(document);
        }
예제 #2
0
        public Document getSensitiveWeblink()
        {
            var url      = new Uri("https://mystore.com/checkout?ID=A8DJS1JFV98AJKS9");
            var document = new SensitiveContainer
            {
                Value = new WebLink
                {
                    Text = "Please follow this link for the checkout",
                    Uri  = url
                }
            };

            return(document);
        }