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

ICredentialLookup.cs « System.Net « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26b48ba9860b4483c31206cfa06dd3309ed362d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Net.ICredential.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//   Duncan Mak (duncan@ximian.com)
//

namespace System.Net {

	// <remarks>
	//   Base authentication interface for Web clients.
	// </remarks>
	public interface ICredentials 
	{
		NetworkCredential GetCredential (Uri uri, string authType);
	}
}