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()
{