a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
452 B
C#
18 lines
452 B
C#
namespace System.Web.Mvc {
|
|
using System;
|
|
using System.Web.SessionState;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
public sealed class SessionStateAttribute : Attribute {
|
|
|
|
public SessionStateAttribute(SessionStateBehavior behavior) {
|
|
Behavior = behavior;
|
|
}
|
|
|
|
public SessionStateBehavior Behavior {
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
}
|