Skip to content

Commit e2dc2fa

Browse files
committed
Save AuthenticationConfiguration.cs as UTF-8
1 parent a49c79f commit e2dc2fa

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

Enyim.Caching/Configuration/AuthenticationConfiguration.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1+
using Enyim.Caching.Memcached;
12
using System;
23
using System.Collections.Generic;
3-
using Enyim.Caching.Memcached;
44

55
namespace Enyim.Caching.Configuration
66
{
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;
1111

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+
}
2121

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+
}
2727
}
2828

2929
#region [ License information ]
3030
/* ************************************************************
3131
*
32-
* Copyright (c) 2010 Attila Kiskó, enyim.com
32+
* Copyright (c) 2010 Attila Kisk? enyim.com
3333
*
3434
* Licensed under the Apache License, Version 2.0 (the "License");
3535
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)