Adding reference source for System.Net
[mono.git] / mcs / class / referencesource / System / net / System / Net / _ISessionAuthenticationModule.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="_ICompleteAuthenticationModule.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6
7
8 namespace System.Net {
9
10     internal interface ISessionAuthenticationModule : IAuthenticationModule {
11
12         bool Update(string challenge, WebRequest webRequest);
13
14         void ClearSession(WebRequest webRequest);
15
16         bool CanUseDefaultCredentials { get; }
17
18     } // interface ISessionAuthenticationModule
19
20
21 } // namespace System.Net