linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/SessionStateAttribute.cs

18 lines
452 B
C#
Raw Normal View History

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;
}
}
}