Rock.CheckIn.CheckInLocation.this C# (CSharp) Method

this() private method

private this ( object key ) : object
key object
return object
        public object this[object key]
        {
            get
            {
                switch ( key.ToStringSafe() )
                {
                    case "LastCheckIn": return LastCheckIn;
                    case "Schedules": return GetSchedules( true );
                    default: return Location[key];
                }
            }
        }