Esempio n. 1
0
        private void sendRequest()
        {
            var pdfServiceClient = new PdfServiceClient();

            pdfServiceClient.CreateReportCompleted += pdfServiceClientCreateReportCompleted;
            pdfServiceClient.CreateReportAsync("test report");
        }
Esempio n. 2
0
        public MainPage()
        {
            InitializeComponent();
            var client = new PdfServiceClient();

            client.TestCompleted += TestCompleted;

            //client.TestAsync(true);
        }
Esempio n. 3
0
 private void sendRequest()
 {
     var pdfServiceClient = new PdfServiceClient();
     pdfServiceClient.CreateReportCompleted += pdfServiceClientCreateReportCompleted;
     pdfServiceClient.CreateReportAsync("test report");
 }