IOSFBAppRequest() 개인적인 메소드

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
리턴 void
예제 #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);
 }