Skip to content

Commit

Permalink
Expose underlying AuthenticationSchemes property
Browse files Browse the repository at this point in the history
Expose the AuthenticationSchemes property from the underlying
HttpListener to allow use of different authentication protocols.
  • Loading branch information
compile-this committed Jul 16, 2012
1 parent 6771b65 commit 52dbfbe
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SignalR.Hosting.Self/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ public Server(string url, IDependencyResolver resolver)
_listener.Prefixes.Add(url);
}

public AuthenticationSchemes AuthenticationSchemes
{
get { return _listener.AuthenticationSchemes; }
set { _listener.AuthenticationSchemes = value; }
}

/// <summary>
/// Starts the server connection.
/// </summary>
Expand Down

0 comments on commit 52dbfbe

Please sign in to comment.