[Mono-list] System.Web.Configuration
Toelen
toelen@pandora.be
Fri, 17 Aug 2001 18:55:04 +0200
This is a multi-part message in MIME format.
------=_NextPart_000_0005_01C1274E.206E0CA0
Content-Type: multipart/alternative;
boundary="----=_NextPart_001_0006_01C1274E.206E0CA0"
------=_NextPart_001_0006_01C1274E.206E0CA0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi,
I am working on the System.Web.Configuration namespace. These are the =
three files I already did. Two classes still need some work, but I will =
send them when they are ready.
Keep up the good work.
Leen Toelen
------=_NextPart_001_0006_01C1274E.206E0CA0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2479.6" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hi,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I am working on the =
System.Web.Configuration=20
namespace. These are the three files I already did. Two classes still =
need some=20
work, but I will send them when they are ready.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Keep up the good work.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Leen Toelen</FONT></DIV></BODY></HTML>
------=_NextPart_001_0006_01C1274E.206E0CA0--
------=_NextPart_000_0005_01C1274E.206E0CA0
Content-Type: application/octet-stream;
name="FormsProtectionEnum.cs"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="FormsProtectionEnum.cs"
/* System.Web.Configuration
* Authors:
* Leen Toelen (toelen@hotmail.com)
* Copyright (C) 2001 Leen Toelen
*/
namespace System.Web.Configuration {
/// <summary>
/// Defines the method used for securing web forms.
/// </summary>
public enum FormsProtectionEnum{
All,
Encryption,
None,
Validation
}
} //namespace System.Web.Configuration
------=_NextPart_000_0005_01C1274E.206E0CA0
Content-Type: application/octet-stream;
name="FormsAuthPasswordFormat.cs"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="FormsAuthPasswordFormat.cs"
/* System.Web.Configuration
* Authors:
* Leen Toelen (toelen@hotmail.com)
* Copyright (C) 2001 Leen Toelen
*/
namespace System.Web.Configuration {
/// <summary>
/// Defines the password encryption format.
/// </summary>
public enum FormsAuthPasswordFormat{
Clear,
MD5,
SHA1
}
} //namespace System.Web.Configuration
------=_NextPart_000_0005_01C1274E.206E0CA0
Content-Type: application/octet-stream;
name="AuthenticationMode.cs"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="AuthenticationMode.cs"
/* System.Web.Configuration
* Authors:
* Leen Toelen (toelen@hotmail.com)
* Copyright (C) 2001 Leen Toelen
*/
namespace System.Web.Configuration {
/// <summary>
/// Defines the AuthenticationMode for a Web Application.
/// </summary>
public enum AuthenticationMode{
Forms,
None,
Passport,
Windows
}
} //namespace System.Web.Configuration
------=_NextPart_000_0005_01C1274E.206E0CA0--