IOSFBAppRequest() private method

private IOSFBAppRequest ( int requestId, string message, string actionType, string objectId, string to = null, int toLength, string filters = "", string excludeIds = null, int excludeIdsLength, bool hasMaxRecipients = false, int maxRecipients, string data = "", string title = "" ) : void
requestId int
message string
actionType string
objectId string
to string
toLength int
filters string
excludeIds string
excludeIdsLength int
hasMaxRecipients bool
maxRecipients int
data string
title string
return void
Ejemplo n.º 1
0
 public void AppRequest(
     int requestId,
     string message,
     string actionType,
     string objectId,
     string[] to           = null,
     int toLength          = 0,
     string filters        = "",
     string[] excludeIds   = null,
     int excludeIdsLength  = 0,
     bool hasMaxRecipients = false,
     int maxRecipients     = 0,
     string data           = "",
     string title          = "")
 {
     IOSWrapper.IOSFBAppRequest(
         requestId,
         message,
         actionType,
         objectId,
         to,
         toLength,
         filters,
         excludeIds,
         excludeIdsLength,
         hasMaxRecipients,
         maxRecipients,
         data,
         title);
 }