GroupInvite IGroupInvitesThisInterface.this[UGUI requestingAgent, UUID groupInviteID]
 {
     get
     {
         GroupInvite invite;
         if (Invites.TryGetValue(requestingAgent, groupInviteID, out invite))
         {
             return(invite);
         }
         throw new KeyNotFoundException();
     }
 }