[This is preliminary documentation and is subject to change.]

Gets or sets the value associated with the specified key.

Namespace:  Facebook.Api
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public Object this[
	string key
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	key As String _
) As Object
Visual C++
public:
property Object^ default[String^ key] {
	Object^ get (String^ key);
	void set (String^ key, Object^ value);
}

Parameters

key
Type: System..::.String
The key of the value to get or set.

Return Value

The value associated with the specified key.

Remarks

This implementation hides the base indexer implementation such that specifying a key that does not exist returns null rather than throwing a KeyNotFoundException.

See Also

FacebookArgs Class
Facebook.Api Namespace