X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.Security%2FMembershipPasswordFormat.cs;h=ff731a0a8ec325180e7d45ebd45cca002663a154;hb=fc51c162747c34bb79c44b4b54a92d029a9cbe1a;hp=af501fd133f11f6e61d8261794d3264f37b0daff;hpb=c39d7ce9985a7067c1cbf44188007c9433901940;p=mono.git diff --git a/mcs/class/System.Web/System.Web.Security/MembershipPasswordFormat.cs b/mcs/class/System.Web/System.Web.Security/MembershipPasswordFormat.cs index af501fd133f..ff731a0a8ec 100644 --- a/mcs/class/System.Web/System.Web.Security/MembershipPasswordFormat.cs +++ b/mcs/class/System.Web/System.Web.Security/MembershipPasswordFormat.cs @@ -27,14 +27,19 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // +using System.Runtime.CompilerServices; -#if NET_2_0 -namespace System.Web.Security { - public enum MembershipPasswordFormat { +namespace System.Web.Security +{ +#if NET_4_0 + [TypeForwardedFrom ("System.Web, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")] +#endif + public enum MembershipPasswordFormat + { Clear = 0, Hashed = 1, Encrypted = 2 } } -#endif +