Rock.CheckIn.CheckInState.CheckInState C# (CSharp) 메소드

CheckInState() 공개 메소드

Initializes a new instance of the CheckInState class.
public CheckInState ( int deviceId, int checkinTypeId, List configuredGroupTypes ) : System.Collections.Generic
deviceId int The device id.
checkinTypeId int The checkin type identifier.
configuredGroupTypes List The configured group types.
리턴 System.Collections.Generic
        public CheckInState( int deviceId, int? checkinTypeId, List<int> configuredGroupTypes )
        {
            DeviceId = deviceId;
            CheckinTypeId = checkinTypeId;
            ConfiguredGroupTypes = configuredGroupTypes;
            CheckIn = new CheckInStatus();
        }