// METHOD: setAuthority // - Set track authority by trackId public bool setAuthority(string trackId, BlockAuthority auth) { if (checkTrackBlockExistence(trackId)) { m_trackBlocks[trackId].Authority = auth; return true; } return false; }