summaryrefslogtreecommitdiffstats
path: root/samples/OAuthConsumerWpf/MainWindow.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OAuthConsumerWpf/MainWindow.xaml.cs')
-rw-r--r--samples/OAuthConsumerWpf/MainWindow.xaml.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/OAuthConsumerWpf/MainWindow.xaml.cs b/samples/OAuthConsumerWpf/MainWindow.xaml.cs
index eac6353..310c2c6 100644
--- a/samples/OAuthConsumerWpf/MainWindow.xaml.cs
+++ b/samples/OAuthConsumerWpf/MainWindow.xaml.cs
@@ -112,9 +112,9 @@
bool? result = auth.ShowDialog();
if (result.HasValue && result.Value) {
this.wcfAccessToken = auth.Authorization;
- this.wcfName.Content = CallService(client => client.GetName());
- this.wcfAge.Content = CallService(client => client.GetAge());
- this.wcfFavoriteSites.Content = CallService(client => string.Join(", ", client.GetFavoriteSites()));
+ this.wcfName.Content = this.CallService(client => client.GetName());
+ this.wcfAge.Content = this.CallService(client => client.GetAge());
+ this.wcfFavoriteSites.Content = this.CallService(client => string.Join(", ", client.GetFavoriteSites()));
}
}