diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-20 07:33:33 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-20 07:33:33 -0700 |
commit | 437d7b39b93416af9fe5f86d0469db7236f4a7db (patch) | |
tree | 7ebe8a61b93eec7c3563e634df2ef127ec489787 /samples/DotNetOpenAuth.ApplicationBlock | |
parent | 767e676d9239e18447e951b7715284fee256ec49 (diff) | |
download | DotNetOpenAuth-437d7b39b93416af9fe5f86d0469db7236f4a7db.zip DotNetOpenAuth-437d7b39b93416af9fe5f86d0469db7236f4a7db.tar.gz DotNetOpenAuth-437d7b39b93416af9fe5f86d0469db7236f4a7db.tar.bz2 |
StyleCop fixes that only appeared when building at the command line.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/Util.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Util.cs b/samples/DotNetOpenAuth.ApplicationBlock/Util.cs index 65505b6..0bec372 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/Util.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/Util.cs @@ -177,7 +177,7 @@ public Stream GetRequestStream(HttpWebRequest request) { this.action(request); - return wrappedHandler.GetRequestStream(request); + return this.wrappedHandler.GetRequestStream(request); } /// <summary> @@ -202,7 +202,7 @@ public Stream GetRequestStream(HttpWebRequest request, DirectWebRequestOptions options) { this.action(request); - return wrappedHandler.GetRequestStream(request, options); + return this.wrappedHandler.GetRequestStream(request, options); } /// <summary> @@ -226,7 +226,7 @@ this.action(request); } - return wrappedHandler.GetResponse(request); + return this.wrappedHandler.GetResponse(request); } /// <summary> @@ -250,7 +250,7 @@ this.action(request); } - return wrappedHandler.GetResponse(request, options); + return this.wrappedHandler.GetResponse(request, options); } #endregion |