Skip to content

Commit abaea25

Browse files
committed
Merge pull request couchbaselabs#15 from couchbaselabs/override-name
Override Name and Description properties
2 parents 3cadbeb + 3b8e86f commit abaea25

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Couchbase.AspNet/SessionState/CouchbaseSessionStateProvider.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ public CouchbaseSessionStateProvider()
2424
{
2525
}
2626

27+
/// <summary>
28+
/// Gets the name of the provider
29+
/// </summary>
30+
public override string Name
31+
{
32+
get { return GetType().Name; }
33+
}
34+
35+
/// <summary>
36+
/// Gets a description of the provider.
37+
/// </summary>
38+
public override string Description
39+
{
40+
get { return "Implementation of SessionStateStoreProvider using Couchbase Server as the backend store."; }
41+
}
42+
2743
/// <summary>
2844
/// For unit testing only.
2945
/// </summary>

0 commit comments

Comments
 (0)