Artemis.Engine.Multiforms.TransitionConstraintsAttribute.TransitionConstraintsAttribute C# (CSharp) Method

TransitionConstraintsAttribute() public method

public TransitionConstraintsAttribute ( string AllowedFrom = null, string NotAllowedFrom = null ) : System
AllowedFrom string
NotAllowedFrom string
return System
        public TransitionConstraintsAttribute(
            string[] AllowedFrom = null,
            string[] NotAllowedFrom = null
            )
        {
            this.AllowedFrom    = AllowedFrom;
            this.NotAllowedFrom = NotAllowedFrom;
        }
TransitionConstraintsAttribute