|
| 1 | +using Enyim.Caching.Memcached; |
1 | 2 | using System; |
2 | 3 | using System.Collections.Generic; |
3 | | -using Enyim.Caching.Memcached; |
4 | 4 |
|
5 | 5 | namespace Enyim.Caching.Configuration |
6 | 6 | { |
7 | | - public class AuthenticationConfiguration : IAuthenticationConfiguration |
8 | | - { |
9 | | - private Type authenticator; |
10 | | - private Dictionary<string, object> parameters; |
| 7 | + public class AuthenticationConfiguration : IAuthenticationConfiguration |
| 8 | + { |
| 9 | + private Type authenticator; |
| 10 | + private Dictionary<string, object> parameters; |
11 | 11 |
|
12 | | - Type IAuthenticationConfiguration.Type |
13 | | - { |
14 | | - get { return this.authenticator; } |
15 | | - set |
16 | | - { |
17 | | - ConfigurationHelper.CheckForInterface(value, typeof(ISaslAuthenticationProvider)); |
18 | | - this.authenticator = value; |
19 | | - } |
20 | | - } |
| 12 | + Type IAuthenticationConfiguration.Type |
| 13 | + { |
| 14 | + get { return this.authenticator; } |
| 15 | + set |
| 16 | + { |
| 17 | + ConfigurationHelper.CheckForInterface(value, typeof(ISaslAuthenticationProvider)); |
| 18 | + this.authenticator = value; |
| 19 | + } |
| 20 | + } |
21 | 21 |
|
22 | | - Dictionary<string, object> IAuthenticationConfiguration.Parameters |
23 | | - { |
24 | | - get { return this.parameters ?? (this.parameters = new Dictionary<string, object>()); } |
25 | | - } |
26 | | - } |
| 22 | + Dictionary<string, object> IAuthenticationConfiguration.Parameters |
| 23 | + { |
| 24 | + get { return this.parameters ?? (this.parameters = new Dictionary<string, object>()); } |
| 25 | + } |
| 26 | + } |
27 | 27 | } |
28 | 28 |
|
29 | 29 | #region [ License information ] |
30 | 30 | /* ************************************************************ |
31 | 31 | * |
32 | | - * Copyright (c) 2010 Attila Kiskó, enyim.com |
| 32 | + * Copyright (c) 2010 Attila Kisk? enyim.com |
33 | 33 | * |
34 | 34 | * Licensed under the Apache License, Version 2.0 (the "License"); |
35 | 35 | * you may not use this file except in compliance with the License. |
|
0 commit comments