We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0695dd4 commit 3b8e86fCopy full SHA for 3b8e86f
Couchbase.AspNet/SessionState/CouchbaseSessionStateProvider.cs
@@ -24,6 +24,22 @@ public CouchbaseSessionStateProvider()
24
{
25
}
26
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
36
+ /// Gets a description of the provider.
37
38
+ public override string Description
39
40
+ get { return "Implementation of SessionStateStoreProvider using Couchbase Server as the backend store."; }
41
42
43
/// <summary>
44
/// For unit testing only.
45
/// </summary>
0 commit comments