Make an HTTP Post Multipart request.
Namespace: CTCT.UtilAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
public CUrlResponse PostMultipart(
string url,
string accessToken,
string apiKey,
byte[] data
)
public CUrlResponse PostMultipart(
string url,
string accessToken,
string apiKey,
byte[] data
)
Public Function PostMultipart ( _
url As String, _
accessToken As String, _
apiKey As String, _
data As Byte() _
) As CUrlResponse
Public Function PostMultipart ( _
url As String, _
accessToken As String, _
apiKey As String, _
data As Byte() _
) As CUrlResponse
public:
virtual CUrlResponse^ PostMultipart(
String^ url,
String^ accessToken,
String^ apiKey,
array<unsigned char>^ data
) sealed
public:
virtual CUrlResponse^ PostMultipart(
String^ url,
String^ accessToken,
String^ apiKey,
array<unsigned char>^ data
) sealed
abstract PostMultipart :
url : string *
accessToken : string *
apiKey : string *
data : byte[] -> CUrlResponse
override PostMultipart :
url : string *
accessToken : string *
apiKey : string *
data : byte[] -> CUrlResponse
abstract PostMultipart :
url : string *
accessToken : string *
apiKey : string *
data : byte[] -> CUrlResponse
override PostMultipart :
url : string *
accessToken : string *
apiKey : string *
data : byte[] -> CUrlResponse
Parameters
- url
- Type: System String
Request URL.
- accessToken
- Type: System String
Constant Contact OAuth2 access token
- apiKey
- Type: System String
The API key for the application
- data
- Type: System Byte
Data to send with request.
Return Value
The response body, http info, and error (if one exists).
Implements
IRestClient PostMultipart(String, String, String, Byte )