Table of Contents

Class FacebookBatchParameter

Namespace
Facebook
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 HttpMethod

The http method.

path string

The resource path.

FacebookBatchParameter(HttpMethod, string, object)

Initializes a new instance of the FacebookBatchParameter class.

public FacebookBatchParameter(HttpMethod httpMethod, string path, object parameters)

Parameters

httpMethod HttpMethod

The http method.

path string

The resource path.

parameters object

The parameters.

FacebookBatchParameter(string)

Initializes a new instance of the FacebookBatchParameter class.

public FacebookBatchParameter(string path)

Parameters

path string

The resource path.

FacebookBatchParameter(string, object)

Initializes a new instance of the FacebookBatchParameter class.

public FacebookBatchParameter(string path, object parameters)

Parameters

path string

The resource path.

parameters object

The parameters.

Properties

Data

Gets or sets the raw data parameter.

public object Data { get; set; }

Property Value

object

HttpMethod

Gets or sets the http method.

public HttpMethod HttpMethod { get; set; }

Property Value

HttpMethod

Parameters

Gets or sets the parameters.

public object Parameters { get; set; }

Property Value

object

Path

Gets or sets the resource path.

public string Path { get; set; }

Property Value

string