Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Net/NetworkCredential.cs')
-rwxr-xr-xmcs/class/System/System.Net/NetworkCredential.cs63
1 files changed, 0 insertions, 63 deletions
diff --git a/mcs/class/System/System.Net/NetworkCredential.cs b/mcs/class/System/System.Net/NetworkCredential.cs
deleted file mode 100755
index 8f62cdbe292..00000000000
--- a/mcs/class/System/System.Net/NetworkCredential.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-//
-// System.Net.NetworkCredential.cs
-//
-// Author: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-namespace System.Net
-{
- public class NetworkCredential : ICredentials
- {
- // Fields
- string userName;
- string password;
- string domain;
-
- // Constructors
- public NetworkCredential ()
- : base ()
- {
- }
-
- public NetworkCredential (string userName, string password)
- {
- this.userName = userName;
- this.password = password;
- }
-
- public NetworkCredential (string userName, string password, string domain)
- {
- this.userName = userName;
- this.password = password;
- this.domain = domain;
- }
-
- // Properties
-
- public string Domain
- {
- get { return domain; }
- set { domain = value; }
- }
-
- public string UserName
- {
- get { return userName; }
- set { userName = value; }
- }
-
- public string Password
- {
- get { return password; }
- set { password = value; }
- }
-
- [MonoTODO]
- public NetworkCredential GetCredential (Uri uri, string authType)
- {
- return null;
- }
- }
-}