2002-03-05 Gaurav Vaish <gvaish@iitk.ac.in>
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>
Tue, 5 Mar 2002 01:22:53 +0000 (01:22 -0000)
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>
Tue, 5 Mar 2002 01:22:53 +0000 (01:22 -0000)
* *.cs: First work, of delegates.

* ChangeLog, TODO: Details about the namespace.

svn path=/trunk/mcs/; revision=2892

mcs/class/System.Web/System.Web.Security/ChangeLog [new file with mode: 0644]
mcs/class/System.Web/System.Web.Security/DefaultAuthenticationEventHandler.cs [new file with mode: 0644]
mcs/class/System.Web/System.Web.Security/FormsAuthenticationEventHandler.cs [new file with mode: 0644]
mcs/class/System.Web/System.Web.Security/PassportAuthenticationEventHandler.cs [new file with mode: 0644]
mcs/class/System.Web/System.Web.Security/TODO [new file with mode: 0644]
mcs/class/System.Web/System.Web.Security/WindowsAuthenticationEventHandler.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Web/System.Web.Security/ChangeLog b/mcs/class/System.Web/System.Web.Security/ChangeLog
new file mode 100644 (file)
index 0000000..51ed817
--- /dev/null
@@ -0,0 +1,10 @@
+2002-03-05     Gaurav Vaish <gvaish@iitk.ac.in>
+
+       * DefaultAuthenticationEventHandler.cs,
+       * FormsAuthenticationEventHandler.cs,
+       * PassportAuthenticationEventHandler.cs, 
+       * WindowsAuthenticationEventHandler.cs
+                                         - Completed.
+
+
+// File Created 2002-03-05
diff --git a/mcs/class/System.Web/System.Web.Security/DefaultAuthenticationEventHandler.cs b/mcs/class/System.Web/System.Web.Security/DefaultAuthenticationEventHandler.cs
new file mode 100644 (file)
index 0000000..81ec950
--- /dev/null
@@ -0,0 +1,16 @@
+/**
+ * Namespace: System.Web.UI.Security
+ *
+ * Author: Gaurav Vaish
+ * Maintainer: gvaish@iitk.ac.in
+ * Contact:  <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
+ * Implementation: yes
+ * Status: 100%
+ *
+ * (C) Gaurav Vaish (2002)
+ */
+
+namespace System.Web.UI.Security
+{
+       public delegate void DefaultAuthenticationEventHandler(object sender, DefaultAuthenticationEventArgs e);
+}
\ No newline at end of file
diff --git a/mcs/class/System.Web/System.Web.Security/FormsAuthenticationEventHandler.cs b/mcs/class/System.Web/System.Web.Security/FormsAuthenticationEventHandler.cs
new file mode 100644 (file)
index 0000000..00974d0
--- /dev/null
@@ -0,0 +1,16 @@
+/**
+ * Namespace: System.Web.UI.Security
+ *
+ * Author: Gaurav Vaish
+ * Maintainer: gvaish@iitk.ac.in
+ * Contact:  <my_scripts2002@yahoo.com>, <gvaish@iitk.ac.in>
+ * Implementation: yes
+ * Status: 100%
+ *
+ * (C) Gaurav Vaish (2002)
+ */
+
+namespace System.Web.UI.Security
+{
+       public delegate void FormsAuthenticationEventHandler(object sender, FormsAuthenticationEventArgs e);
+}
\ No newline at end of file
diff --git a/mcs/class/System.Web/System.Web.Security/PassportAuthenticationEventHandler.cs b/mcs/class/System.Web/System.Web.Security/PassportAuthenticationEventHandler.cs
new file mode 100644 (file)
index 0000000..666996b
--- /dev/null
@@ -0,0 +1,16 @@
+/**
+ * Namespace: System.Web.UI.Security
+ *
+ * Author: Gaurav Vaish
+ * Maintainer: gvaish@iitk.ac.in
+ * Contact:  <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
+ * Implementation: yes
+ * Status: 100%
+ *
+ * (C) Gaurav Vaish (2002)
+ */
+
+namespace System.Web.UI.Security
+{
+       public delegate void PassportAuthenticationEventHandler(object sender, PassportAuthenticationEventArgs e);
+}
\ No newline at end of file
diff --git a/mcs/class/System.Web/System.Web.Security/TODO b/mcs/class/System.Web/System.Web.Security/TODO
new file mode 100644 (file)
index 0000000..764aa12
--- /dev/null
@@ -0,0 +1,37 @@
+All Classes and Delegates
+
+
+<attributesIssue>
+ Attributes may have to be supplied to the classes. Currently, I have
+ not taken care of these aspects. They are to be handled later on.
+</attributesIssue>
+
+<disposableItemsIssue>
+ I have not taken care of any disposing issues that may be involved. But I
+ think it will not be a problem since I am no where using unmanaged code.
+</disposableItemsIssue>
+
+<legends>
+*: Completed
+&: Work in progress. See <item-name>.cs file for maintainer's name
+</legends>
+
+DefaultAuthenticationEventArgs
+DefaultAuthenticationModule
+FileAuthorizationModule
+FormsAuthentication
+FormsAuthenticationEventArgs
+FormsAuthenticationModule
+FormsAuthenticationTicket
+FormsIdentity
+PassportAuthenticationEventArgs
+PassportAuthenticationModule
+PassportIdentity
+UrlAuthorizationModule
+WindowsAuthenticationEventArgs
+WindowsAuthenticationModule
+
+* DefaultAuthenticationEventHandler
+* FormsAuthenticationEventHandler
+* PassportAuthenticationEventHandler
+* WindowsAuthenticationEventHandler
\ No newline at end of file
diff --git a/mcs/class/System.Web/System.Web.Security/WindowsAuthenticationEventHandler.cs b/mcs/class/System.Web/System.Web.Security/WindowsAuthenticationEventHandler.cs
new file mode 100644 (file)
index 0000000..ffdb90e
--- /dev/null
@@ -0,0 +1,16 @@
+/**
+ * Namespace: System.Web.UI.Security
+ *
+ * Author: Gaurav Vaish
+ * Maintainer: gvaish@iitk.ac.in
+ * Contact:  <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
+ * Implementation: yes
+ * Status: 100%
+ *
+ * (C) Gaurav Vaish (2002)
+ */
+
+namespace System.Web.UI.Security
+{
+       public delegate void WindowsAuthenticationEventHandler(object sender, WindowsAuthenticationEventArgs e);
+}
\ No newline at end of file