Enable the System build for monodroid
[mono.git] / mcs / class / System / System.Net / IAuthenticationModule.cs
old mode 100755 (executable)
new mode 100644 (file)
index b48e5d5..76076c0
@@ -33,8 +33,11 @@ namespace System.Net {
        // <remarks>
        //   Authentication interface for Web client authentication modules.
        // </remarks>
-       public interface IAuthenticationModule
-       {
+#if MOONLIGHT
+       internal interface IAuthenticationModule {
+#else
+       public interface IAuthenticationModule {
+#endif
                Authorization Authenticate (string challenge, WebRequest request, ICredentials credentials);
                Authorization PreAuthenticate (WebRequest request, ICredentials credentials);
                string AuthenticationType { get; }