Skip to content

Commit

Permalink
Fixed some intellisense comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-jitbit committed Jul 10, 2023
1 parent 55ea106 commit 67e36ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion AspNetSaml/Saml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,11 @@ public class AuthRequest : BaseRequest
{
private string _assertionConsumerServiceUrl;

/// <summary>
/// Initializes new instance of AuthRequest
/// </summary>
/// <param name="issuer">put your EntityID here</param>
/// <param name="assertionConsumerServiceUrl">put your return URL here</param>
public AuthRequest(string issuer, string assertionConsumerServiceUrl) : base(issuer)
{
_assertionConsumerServiceUrl = assertionConsumerServiceUrl;
Expand All @@ -295,7 +300,6 @@ public enum AuthRequestFormat
/// <summary>
/// returns SAML request as compressed and Base64 encoded XML. You don't need this method
/// </summary>
/// <param name="format"></param>
/// <returns></returns>
public override string GetRequest()
{
Expand Down

0 comments on commit 67e36ff

Please sign in to comment.