コード例 #1
0
 private static Request BuildDeleteRequest(DeleteMemberOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.Chat,
                "/v1/Services/" + options.PathServiceSid + "/Channels/" + options.PathChannelSid + "/Members/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }