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

Returns a collection of child properties of every object in the source collection.

Namespace:  Facebook.Json.Linq
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public static IJEnumerable<JProperty> Properties(
	this IEnumerable<JObject> source
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function Properties ( _
	source As IEnumerable(Of JObject) _
) As IJEnumerable(Of JProperty)
Visual C++
[ExtensionAttribute]
public:
static IJEnumerable<JProperty^>^ Properties(
	IEnumerable<JObject^>^ source
)

Parameters

source
Type: System.Collections.Generic..::.IEnumerable<(Of <(JObject>)>)
An IEnumerable<(Of <(T>)>) of JObject that contains the source collection.

Return Value

An IEnumerable<(Of <(T>)>) of JProperty that contains the properties of every object in the source collection.

See Also

Extensions Class
Facebook.Json.Linq Namespace