FMIceLinkHttpRequestArgs Class Reference
| Inherits from | FMIceLinkDynamic : FMIceLinkSerializable : NSObject |
|---|---|
| Declared in | FMIceLinkHttpRequestArgs.h FMIceLinkHttpRequestArgs.m |
– binaryContent
Gets the binary content to transfer over HTTP.
Overrides FMIceLinkHttpRequestArgs#[textContent](#//api/name/textContent).
- (NSMutableData *)binaryContentDiscussion
Gets the binary content to transfer over HTTP.
Overrides FMIceLinkHttpRequestArgs#[textContent](#//api/name/textContent).
Declared In
FMIceLinkHttpRequestArgs.h
– headers
Gets the headers to transfer over HTTP.
- (FMIceLinkNameValueCollection *)headersDiscussion
Gets the headers to transfer over HTTP.
Declared In
FMIceLinkHttpRequestArgs.h
+ httpRequestArgs
Initializes a new instance of the FMIceLinkHttpRequestArgs class
with default values.
+ (FMIceLinkHttpRequestArgs *)httpRequestArgsDiscussion
Initializes a new instance of the FMIceLinkHttpRequestArgs class
with default values.
Declared In
FMIceLinkHttpRequestArgs.h
– init
Initializes a new instance of the FMIceLinkHttpRequestArgs class
with default values.
- (instancetype)initDiscussion
Initializes a new instance of the FMIceLinkHttpRequestArgs class
with default values.
Declared In
FMIceLinkHttpRequestArgs.h
– method
Gets the HTTP method.
- (FMIceLinkHttpMethod)methodDiscussion
Gets the HTTP method.
Declared In
FMIceLinkHttpRequestArgs.h
– onRequestCreated
Gets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
- (FMIceLinkAction1 *)onRequestCreatedDiscussion
Gets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– onResponseReceived
Gets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
- (FMIceLinkAction1 *)onResponseReceivedDiscussion
Gets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– sender
Gets the sender of the content, either a client or publisher.
- (id)senderDiscussion
Gets the sender of the content, either a client or publisher.
Declared In
FMIceLinkHttpRequestArgs.h
– setBinaryContent:
Sets the binary content to transfer over HTTP.
Overrides FMIceLinkHttpRequestArgs#[textContent](#//api/name/textContent).
- (void)setBinaryContent:(NSMutableData *)valueDiscussion
Sets the binary content to transfer over HTTP.
Overrides FMIceLinkHttpRequestArgs#[textContent](#//api/name/textContent).
Declared In
FMIceLinkHttpRequestArgs.h
– setHeaders:
Sets the [headers](#//api/name/headers) to transfer over HTTP.
- (void)setHeaders:(FMIceLinkNameValueCollection *)valueDiscussion
Sets the [headers](#//api/name/headers) to transfer over HTTP.
Declared In
FMIceLinkHttpRequestArgs.h
– setMethod:
Sets the HTTP [method](#//api/name/method).
- (void)setMethod:(FMIceLinkHttpMethod)valueDiscussion
Sets the HTTP [method](#//api/name/method).
Declared In
FMIceLinkHttpRequestArgs.h
– setOnRequestCreated:
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
- (void)setOnRequestCreated:(FMIceLinkAction1 *)valueDiscussion
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setOnRequestCreatedBlock
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
- (void ( ^ ) ( void ( ^ ) ( FMIceLinkHttpRequestCreatedArgs *) ))setOnRequestCreatedBlockDiscussion
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setOnRequestCreatedBlock:
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
- (void)setOnRequestCreatedBlock:(void ( ^ ) ( FMIceLinkHttpRequestCreatedArgs *))valueBlockDiscussion
Sets the callback to invoke once the outgoing HTTP request is created.
See [FMIceLinkHttpRequestCreatedArgs](../Classes/FMIceLinkHttpRequestCreatedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setOnResponseReceived:
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
- (void)setOnResponseReceived:(FMIceLinkAction1 *)valueDiscussion
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setOnResponseReceivedBlock
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
- (void ( ^ ) ( void ( ^ ) ( FMIceLinkHttpResponseReceivedArgs *) ))setOnResponseReceivedBlockDiscussion
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setOnResponseReceivedBlock:
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
- (void)setOnResponseReceivedBlock:(void ( ^ ) ( FMIceLinkHttpResponseReceivedArgs *))valueBlockDiscussion
Sets the callback to invoke once the incoming HTTP response has been
received. See [FMIceLinkHttpResponseReceivedArgs](../Classes/FMIceLinkHttpResponseReceivedArgs.html) for callback argument details.
Declared In
FMIceLinkHttpRequestArgs.h
– setSender:
Sets the [sender](#//api/name/sender) of the content, either a client or publisher.
- (void)setSender:(id)valueDiscussion
Sets the [sender](#//api/name/sender) of the content, either a client or publisher.
Declared In
FMIceLinkHttpRequestArgs.h
– setTextContent:
Sets the text content to transfer over HTTP.
- (void)setTextContent:(NSString *)valueDiscussion
Sets the text content to transfer over HTTP.
Declared In
FMIceLinkHttpRequestArgs.h
– setTimeout:
Sets the number of milliseconds to wait before timing out the HTTP transfer.
Defaults to 15000 ms (15 seconds).
- (void)setTimeout:(int)valueDiscussion
Sets the number of milliseconds to wait before timing out the HTTP transfer.
Defaults to 15000 ms (15 seconds).
Declared In
FMIceLinkHttpRequestArgs.h
– setUrl:
Sets the target URL for the HTTP request.
- (void)setUrl:(NSString *)valueDiscussion
Sets the target URL for the HTTP request.
Declared In
FMIceLinkHttpRequestArgs.h
– textContent
Gets the text content to transfer over HTTP.
- (NSString *)textContentDiscussion
Gets the text content to transfer over HTTP.
Declared In
FMIceLinkHttpRequestArgs.h
– timeout
Gets the number of milliseconds to wait before timing out the HTTP transfer.
Defaults to 15000 ms (15 seconds).
- (int)timeoutDiscussion
Gets the number of milliseconds to wait before timing out the HTTP transfer.
Defaults to 15000 ms (15 seconds).
Declared In
FMIceLinkHttpRequestArgs.h
– url
Gets the target URL for the HTTP request.
- (NSString *)urlDiscussion
Gets the target URL for the HTTP request.
Declared In
FMIceLinkHttpRequestArgs.h