WCF-Xtensions Class Reference for Mono
Parse Method (JObject)
Example 






A System.String that contains JSON.
Load a JObject from a string that contains JSON.
Syntax
'Declaration
 
Public Shared Function Parse( _
   ByVal json As System.String _
) As JObject
'Usage
 
Dim json As System.String
Dim value As JObject
 
value = JObject.Parse(json)
public static JObject Parse( 
   System.string json
)
public function Parse( 
    json: System.String
): JObject; static; 
public static function Parse( 
   json : System.String
) : JObject;
public: static JObject* Parse( 
   System.string* json
) 
public:
static JObject^ Parse( 
   System.String^ json
) 

Parameters

json
A System.String that contains JSON.

Return Value

A JObject populated from the string that contains JSON.
Example
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

JObject Class
JObject Members

Send Feedback