Skip to content

Commit 3b8e86f

Browse files
committed
Override Name and Description properties
1 parent 0695dd4 commit 3b8e86f

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)