Name | Description |
---|---|
HttpClientResponseData | |
HttpResponseMessageBody | |
HttpWebRequestResponseData | |
HttpWebResponseBody | |
JsonUnmarshallerContext | Wraps a json string for unmarshalling. Each Read() operation gets the next token. TestExpression() is used to match the current key-chain to an xpath expression. The general pattern looks like this: JsonUnmarshallerContext context = new JsonUnmarshallerContext(jsonString); while (context.Read()) { if (context.IsKey) { if (context.TestExpresion("path/to/element")) { myObject.stringMember = stringUnmarshaller.GetInstance().Unmarshall(context); continue; } } } |
JsonUnmarshallerContext.JsonPathStack | |
UnityWebResponseData | Implementation of response interface for WWW API. |