Skip to content

Commit

Permalink
Fixing compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jweber committed Aug 22, 2015
1 parent d09b70c commit 3769939
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
8 changes: 4 additions & 4 deletions source/WcfClientProxyGenerator/Async/AsyncProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace WcfClientProxyGenerator.Async
{
/// <summary>
/// Wrapper around <typeparamref name="TServiceInterface"/> providing an async friendly
/// Wrapper around <c>TServiceInterface</c> providing an async friendly
/// interface.
/// </summary>
/// <typeparam name="TServiceInterface"></typeparam>
Expand All @@ -23,15 +23,15 @@ public interface IAsyncProxy<TServiceInterface>
TServiceInterface Client { get; }

/// <summary>
/// Make a <see cref="Task"/> based async call to a WCF method on <see cref="TServiceInterface"/>
/// Make a <see cref="Task"/> based async call to a WCF method on <c>TServiceInterface</c>
/// </summary>
/// <typeparam name="TResponse"></typeparam>
/// <param name="method"></param>
/// <returns></returns>
Task<TResponse> CallAsync<TResponse>(Expression<Func<TServiceInterface, TResponse>> method);

/// <summary>
/// Make a <see cref="Task"/> based async call to a WCF method on <see cref="TServiceInterface"/>
/// Make a <see cref="Task"/> based async call to a WCF method on <c>TServiceInterface</c>
/// </summary>
/// <param name="method"></param>
/// <returns></returns>
Expand Down
3 changes: 3 additions & 0 deletions source/WcfClientProxyGenerator/IProxyConfigurator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

namespace WcfClientProxyGenerator
{
/// <summary>
/// Configuration options for the generated WCF proxy
/// </summary>
public interface IProxyConfigurator
{
/// <summary>
Expand Down
3 changes: 3 additions & 0 deletions source/WcfClientProxyGenerator/OnCallBeginHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace WcfClientProxyGenerator
{
/// <summary>
/// Arguments given to the <see cref="OnCallBeginHandler"/> delegate
/// </summary>
public class OnCallBeginHandlerArguments
{
/// <summary>
Expand Down
3 changes: 3 additions & 0 deletions source/WcfClientProxyGenerator/OnCallSuccessHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace WcfClientProxyGenerator
{
/// <summary>
/// Arguments given to the <see cref="OnCallSuccessHandler"/> delegate
/// </summary>
public class OnCallSuccessHandlerArguments
{
/// <summary>
Expand Down
3 changes: 2 additions & 1 deletion source/WcfClientProxyGenerator/RetryingWcfActionInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ private bool EvaluatePredicate<TInstance>(Type key, TInstance instance)
/// Refreshes the proxy by disposing and recreating it if it's faulted.
/// </summary>
/// <param name="provider">The provider.</param>
/// <param name="retryCount"></param>
/// <param name="retryCount">Number of retries to perform</param>
/// <param name="invokeInfo"></param>
/// <returns></returns>
private TServiceInterface RefreshProvider(TServiceInterface provider, int retryCount, InvokeInfo invokeInfo)
{
Expand Down
4 changes: 2 additions & 2 deletions source/WcfClientProxyGenerator/WcfRetryFailedException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ namespace WcfClientProxyGenerator
/// </summary>
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)
{}
}
}

0 comments on commit 3769939

Please sign in to comment.