diff --git a/source/WcfClientProxyGenerator/Async/AsyncProxy.cs b/source/WcfClientProxyGenerator/Async/AsyncProxy.cs index 65d0d0b..c1ded96 100644 --- a/source/WcfClientProxyGenerator/Async/AsyncProxy.cs +++ b/source/WcfClientProxyGenerator/Async/AsyncProxy.cs @@ -10,7 +10,7 @@ namespace WcfClientProxyGenerator.Async { /// - /// Wrapper around providing an async friendly + /// Wrapper around TServiceInterface providing an async friendly /// interface. /// /// @@ -23,15 +23,15 @@ public interface IAsyncProxy TServiceInterface Client { get; } /// - /// Make a based async call to a WCF method on + /// Make a based async call to a WCF method on TServiceInterface /// /// /// /// Task CallAsync(Expression> method); - + /// - /// Make a based async call to a WCF method on + /// Make a based async call to a WCF method on TServiceInterface /// /// /// diff --git a/source/WcfClientProxyGenerator/IProxyConfigurator.cs b/source/WcfClientProxyGenerator/IProxyConfigurator.cs index 044d378..e2543ee 100644 --- a/source/WcfClientProxyGenerator/IProxyConfigurator.cs +++ b/source/WcfClientProxyGenerator/IProxyConfigurator.cs @@ -5,6 +5,9 @@ namespace WcfClientProxyGenerator { + /// + /// Configuration options for the generated WCF proxy + /// public interface IProxyConfigurator { /// diff --git a/source/WcfClientProxyGenerator/OnCallBeginHandler.cs b/source/WcfClientProxyGenerator/OnCallBeginHandler.cs index 7837d97..668a46b 100644 --- a/source/WcfClientProxyGenerator/OnCallBeginHandler.cs +++ b/source/WcfClientProxyGenerator/OnCallBeginHandler.cs @@ -2,6 +2,9 @@ namespace WcfClientProxyGenerator { + /// + /// Arguments given to the delegate + /// public class OnCallBeginHandlerArguments { /// diff --git a/source/WcfClientProxyGenerator/OnCallSuccessHandler.cs b/source/WcfClientProxyGenerator/OnCallSuccessHandler.cs index ddc3edc..998a78e 100644 --- a/source/WcfClientProxyGenerator/OnCallSuccessHandler.cs +++ b/source/WcfClientProxyGenerator/OnCallSuccessHandler.cs @@ -2,6 +2,9 @@ namespace WcfClientProxyGenerator { + /// + /// Arguments given to the delegate + /// public class OnCallSuccessHandlerArguments { /// diff --git a/source/WcfClientProxyGenerator/RetryingWcfActionInvoker.cs b/source/WcfClientProxyGenerator/RetryingWcfActionInvoker.cs index a7a1a00..deaae47 100644 --- a/source/WcfClientProxyGenerator/RetryingWcfActionInvoker.cs +++ b/source/WcfClientProxyGenerator/RetryingWcfActionInvoker.cs @@ -519,7 +519,8 @@ private bool EvaluatePredicate(Type key, TInstance instance) /// Refreshes the proxy by disposing and recreating it if it's faulted. /// /// The provider. - /// + /// Number of retries to perform + /// /// private TServiceInterface RefreshProvider(TServiceInterface provider, int retryCount, InvokeInfo invokeInfo) { diff --git a/source/WcfClientProxyGenerator/WcfRetryFailedException.cs b/source/WcfClientProxyGenerator/WcfRetryFailedException.cs index 698b861..a186acd 100644 --- a/source/WcfClientProxyGenerator/WcfRetryFailedException.cs +++ b/source/WcfClientProxyGenerator/WcfRetryFailedException.cs @@ -7,10 +7,10 @@ namespace WcfClientProxyGenerator /// public class WcfRetryFailedException : Exception { - public WcfRetryFailedException(string message) : base(message) + internal WcfRetryFailedException(string message) : base(message) {} - public WcfRetryFailedException(string message, Exception innerException) : base(message, innerException) + internal WcfRetryFailedException(string message, Exception innerException) : base(message, innerException) {} } }