Dev2.Models.CheckStateChangedArgs.CheckStateChangedArgs C# (CSharp) Method

CheckStateChangedArgs() public method

Initializes a new instance of the T:System.Object class.
public CheckStateChangedArgs ( bool previousState, bool newState, System.Guid resourceId, ResourceType resourceType, bool updateStats ) : System
previousState bool
newState bool
resourceId System.Guid
resourceType ResourceType
updateStats bool
return System
        public CheckStateChangedArgs(bool previousState, bool newState, Guid resourceId, ResourceType resourceType , bool updateStats)
        {
            PreviousState = previousState;
            NewState = newState;
            ResourceId = resourceId;
            ResourceType = resourceType;
            UpdateStats = updateStats;
        }
CheckStateChangedArgs