Ejemplo n.º 1
0
 // Token: 0x06000B00 RID: 2816 RVA: 0x0004DD8E File Offset: 0x0004BF8E
 internal static void GenerateMessageNotDeliveredPayload(InstantMessagePayload payload, string chatId, bool serverPolicy)
 {
     if (serverPolicy)
     {
         InstantMessagePayloadUtilities.GenerateInstantMessageAlertPayload(payload, chatId, InstantMessageAlert.FailedDeliveryDueToServerPolicy);
         return;
     }
     InstantMessagePayloadUtilities.GenerateInstantMessageAlertPayload(payload, chatId, InstantMessageAlert.FailedDelivery);
 }
Ejemplo n.º 2
0
 // Token: 0x06000B01 RID: 2817 RVA: 0x0004DDA6 File Offset: 0x0004BFA6
 internal static void GenerateInstantMessageAlertPayload(InstantMessagePayload payload, string chatId, InstantMessageAlert alertType)
 {
     InstantMessagePayloadUtilities.GenerateInstantMessageAlertPayload(payload, chatId, alertType, null);
 }