PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Gets a HtppWebRequest object with an OAuth 'Authorization' header.

Namespace: Smartsite.Core
Assembly:  Smartsite.Base (in Smartsite.Base.dll)

Syntax

C#Copy imageCopy Code
public  GetRequestObject(
	string method,
	string url,
	<<string, string>> args
)
Visual Basic (Declaration)Copy imageCopy Code
Public Function GetRequestObject ( _
	method As , _
	url As , _
	args As (Of (Of , )) _
) As 

Parameters

method
String
The request method (GET, POST, PUT, DELETE, ...).
url
String
The request Url
args
List<(Of <KeyValuePair<(Of <String, String>)>>)>
The arguments (a hash will be created for the Authorization header)

Return Value

HtppWebRequest object

See Also

OAuth Class
Smartsite.Core Namespace
Advanced