Class FacebookBatchParameter
- Namespace
- Assembly
- Facebook.dll
Represents a batch parameter for the creating batch requests.
public class FacebookBatchParameter
- Inheritance
-
FacebookBatchParameter
- Inherited Members
Remarks
Constructors
FacebookBatchParameter()
Initializes a new instance of the FacebookBatchParameter class.
public FacebookBatchParameter()
FacebookBatchParameter(HttpMethod, string)
Initializes a new instance of the FacebookBatchParameter class.
public FacebookBatchParameter(HttpMethod httpMethod, string path)
Parameters
httpMethod
HttpMethodThe http method.
path
stringThe resource path.
FacebookBatchParameter(HttpMethod, string, object)
Initializes a new instance of the FacebookBatchParameter class.
public FacebookBatchParameter(HttpMethod httpMethod, string path, object parameters)
Parameters
httpMethod
HttpMethodThe http method.
path
stringThe resource path.
parameters
objectThe parameters.
FacebookBatchParameter(string)
Initializes a new instance of the FacebookBatchParameter class.
public FacebookBatchParameter(string path)
Parameters
path
stringThe resource path.
FacebookBatchParameter(string, object)
Initializes a new instance of the FacebookBatchParameter class.
public FacebookBatchParameter(string path, object parameters)
Parameters
Properties
Data
Gets or sets the raw data parameter.
public object Data { get; set; }
Property Value
HttpMethod
Gets or sets the http method.
public HttpMethod HttpMethod { get; set; }
Property Value
Parameters
Gets or sets the parameters.
public object Parameters { get; set; }
Property Value
Path
Gets or sets the resource path.
public string Path { get; set; }