Merge pull request #2305 from ludovic-henry/fix-threadpool-36414
[mono.git] / mcs / class / System / System.Net / ICredentialsByHost.cs
old mode 100755 (executable)
new mode 100644 (file)
index ef82700..281d87b
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 
 namespace System.Net {
        public interface ICredentialsByHost
        {
-               NetworkCredential GetCredential (string host, int port, string authType);
+               NetworkCredential GetCredential (string host, int port, string authenticationType);
        }
 }
-
-#endif