Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
Clarification note about the RpcServerInfoDataContract.RequireAuthent…
Browse files Browse the repository at this point in the history
…ication property.

Fixed issue where sessions could not access the specified session type in the authentication process.
  • Loading branch information
DJGosnell committed Mar 24, 2017
1 parent 0c5820f commit ac60352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class RpcServerInfoDataContract {

/// <summary>
/// True if the server requires authentication before proceeding; False otherwise.
/// Value is overriden based upon server configurations.
/// </summary>
[ProtoMember(4)]
public bool RequireAuthentication { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/DtronixMessageQueue/Rpc/RpcAuthEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class RpcAuthenticateEventArgs<TSession, TConfig> : EventArgs
/// <summary>
/// Connected session.
/// </summary>
public RpcSession<TSession, TConfig> Session { get; }
public TSession Session { get; }

/// <summary>
/// Authentication frame to be passed to the server for verification.
Expand Down

0 comments on commit ac60352

Please sign in to comment.