From 67e36ff609db2af435d6c945306b22513ffbf5d9 Mon Sep 17 00:00:00 2001 From: Alex Yumashev Date: Mon, 10 Jul 2023 13:22:51 +0200 Subject: [PATCH] Fixed some intellisense comments --- AspNetSaml/Saml.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AspNetSaml/Saml.cs b/AspNetSaml/Saml.cs index 4b032b0..6ba205c 100644 --- a/AspNetSaml/Saml.cs +++ b/AspNetSaml/Saml.cs @@ -273,6 +273,11 @@ public class AuthRequest : BaseRequest { private string _assertionConsumerServiceUrl; + /// + /// Initializes new instance of AuthRequest + /// + /// put your EntityID here + /// put your return URL here public AuthRequest(string issuer, string assertionConsumerServiceUrl) : base(issuer) { _assertionConsumerServiceUrl = assertionConsumerServiceUrl; @@ -295,7 +300,6 @@ public enum AuthRequestFormat /// /// returns SAML request as compressed and Base64 encoded XML. You don't need this method /// - /// /// public override string GetRequest() {