Method | Description | |
---|---|---|
GetResult ( string expression ) : WAResult |
Gets the result of the specified expression. The expression is returned as WAResult so you can manually go through the pods of the response (to get ANY information you'd like)It is encouraged to use this method instead of Solve
|
|
GetResultAsync ( string expression ) : void |
Gets the result of the specified expression asynchronously. The expression is returned as WAResult so you can manually go through the pods of the response (to get ANY information you'd like)It is encouraged to use this method instead of Solve
|
|
Parse ( string response ) : WAResult |
Parses the raw response.
|
|
Solve ( string expression ) : string |
Solves the specified expression.
|
|
SolveAsync ( string expression ) : void |
Solves the specified expression asynchronously.
|
|
Submit ( string expression ) : string |
Submits the specified expression and returns the raw result.
|
|
WAClient ( string appId ) : System |
Initializes a new instance of the WAClient class.
|
Method | Description | |
---|---|---|
HandleResultReceived ( IAsyncResult ar ) : void | ||
HandleSolutionReceived ( IAsyncResult ar ) : void |
public GetResult ( string expression ) : WAResult | ||
expression | string | The expression to solve. |
return | WAResult |
public GetResultAsync ( string expression ) : void | ||
expression | string | The expression to solve. |
return | void |
public static Parse ( string response ) : WAResult | ||
response | string | The response to parse |
return | WAResult |
public Solve ( string expression ) : string | ||
expression | string | The expression. |
return | string |
public SolveAsync ( string expression ) : void | ||
expression | string | The expression. |
return | void |
public Submit ( string expression ) : string | ||
expression | string | The expression to post. |
return | string |
public WAClient ( string appId ) : System | ||
appId | string | The application ID provided by Wolfram. You have to request one for each of your apps. |
return | System |