答えて
ここに、新しいAPIで動作するコードがあります。私はAzure Dallasからそれを手に入れました。
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
// Notice: Use of the service proxies that accompany this notice is subject to
// the terms and conditions of the license agreement located at
// http://go.microsoft.com/fwlink/?LinkID=202740&clcid=0x409
// If you do not agree to these terms you may not use this content.
namespace WolframAlpha {
using System;
using System.Collections.Generic;
using System.Data.Services.Client;
using System.Net;
using System.IO;
public partial class DefaultPodEntity {
private String _PlainText;
private String _Img;
private String _Title;
private String _ParentTitle;
private Int16 _ParentPosition;
private String _ParentId;
public String PlainText {
get {
return this._PlainText;
}
set {
this._PlainText = value;
}
}
public String Img {
get {
return this._Img;
}
set {
this._Img = value;
}
}
public String Title {
get {
return this._Title;
}
set {
this._Title = value;
}
}
public String ParentTitle {
get {
return this._ParentTitle;
}
set {
this._ParentTitle = value;
}
}
public Int16 ParentPosition {
get {
return this._ParentPosition;
}
set {
this._ParentPosition = value;
}
}
public String ParentId {
get {
return this._ParentId;
}
set {
this._ParentId = value;
}
}
}
public partial class HtmlPodEntity {
private String _Markup;
private String _Title;
private Int16 _Position;
private String _Id;
private String _Css;
private String _Scripts;
public String Markup {
get {
return this._Markup;
}
set {
this._Markup = value;
}
}
public String Title {
get {
return this._Title;
}
set {
this._Title = value;
}
}
public Int16 Position {
get {
return this._Position;
}
set {
this._Position = value;
}
}
public String Id {
get {
return this._Id;
}
set {
this._Id = value;
}
}
public String Css {
get {
return this._Css;
}
set {
this._Css = value;
}
}
public String Scripts {
get {
return this._Scripts;
}
set {
this._Scripts = value;
}
}
}
public partial class PlainTextPodEntity {
private String _PlainText;
private String _Title;
private String _ParentTitle;
private Int16 _ParentPosition;
private String _ParentId;
public String PlainText {
get {
return this._PlainText;
}
set {
this._PlainText = value;
}
}
public String Title {
get {
return this._Title;
}
set {
this._Title = value;
}
}
public String ParentTitle {
get {
return this._ParentTitle;
}
set {
this._ParentTitle = value;
}
}
public Int16 ParentPosition {
get {
return this._ParentPosition;
}
set {
this._ParentPosition = value;
}
}
public String ParentId {
get {
return this._ParentId;
}
set {
this._ParentId = value;
}
}
}
public partial class WolframAlphaFactsContainer : System.Data.Services.Client.DataServiceContext {
public WolframAlphaFactsContainer(Uri serviceRoot) :
base(serviceRoot) {
}
/// <summary>
/// </summary>
/// <param name="Input">Query string Sample Values : weather|msft|derivative of x^4 sin x|SAT scores</param>
/// <param name="Location">Location used for computation Sample Values : Madrid|Springfield, IL</param>
/// <param name="LatitudeLongitude">Latitude/Longitude used for computation Sample Values : 40.42,-3.71|-22.54,-43.12</param>
/// <param name="Width">Width in pixels for images returned Sample Values : 300|500</param>
public DataServiceQuery<DefaultPodEntity> GetImageResults(String Input, String Location, String LatitudeLongitude, Int16? Width) {
if ((Input == null)) {
throw new System.ArgumentNullException("Input", "Input value cannot be null");
}
DataServiceQuery<DefaultPodEntity> query;
query = base.CreateQuery<DefaultPodEntity>("GetImageResults");
if ((Input != null)) {
query = query.AddQueryOption("Input", string.Concat("\'", Input, "\'"));
}
if ((Location != null)) {
query = query.AddQueryOption("Location", string.Concat("\'", Location, "\'"));
}
if ((LatitudeLongitude != null)) {
query = query.AddQueryOption("LatitudeLongitude", string.Concat("\'", LatitudeLongitude, "\'"));
}
if (((Width != null)
&& (Width.HasValue == true))) {
query = query.AddQueryOption("Width", Width.Value);
}
return query;
}
/// <summary>
/// </summary>
/// <param name="Input">Query string Sample Values : weather|msft|derivative of x^4 sin x|SAT scores</param>
/// <param name="Location">Location used for computation Sample Values : Madrid|Springfield, IL</param>
/// <param name="LatitudeLongitude">Latitude/Longitude used for computation Sample Values : 40.42,-3.71|-22.54,-43.12</param>
/// <param name="Width">Width in pixels for images returned Sample Values : 300|500</param>
public DataServiceQuery<HtmlPodEntity> GetHtmlResults(String Input, String Location, String LatitudeLongitude, Int16? Width) {
if ((Input == null)) {
throw new System.ArgumentNullException("Input", "Input value cannot be null");
}
DataServiceQuery<HtmlPodEntity> query;
query = base.CreateQuery<HtmlPodEntity>("GetHtmlResults");
if ((Input != null)) {
query = query.AddQueryOption("Input", string.Concat("\'", Input, "\'"));
}
if ((Location != null)) {
query = query.AddQueryOption("Location", string.Concat("\'", Location, "\'"));
}
if ((LatitudeLongitude != null)) {
query = query.AddQueryOption("LatitudeLongitude", string.Concat("\'", LatitudeLongitude, "\'"));
}
if (((Width != null)
&& (Width.HasValue == true))) {
query = query.AddQueryOption("Width", Width.Value);
}
return query;
}
/// <summary>
/// </summary>
/// <param name="Input">Query string Sample Values : weather|msft|derivative of x^4 sin x|SAT scores</param>
/// <param name="Location">Location used for computation Sample Values : Madrid|Springfield, IL</param>
/// <param name="LatitudeLongitude">Latitude/Longitude used for computation Sample Values : 40.42,-3.71|-22.54,-43.12</param>
/// <param name="Width">Width in pixels for images returned Sample Values : 300|500</param>
public DataServiceQuery<PlainTextPodEntity> GetPlainTextResults(String Input, String Location, String LatitudeLongitude, Int16? Width) {
if ((Input == null)) {
throw new System.ArgumentNullException("Input", "Input value cannot be null");
}
DataServiceQuery<PlainTextPodEntity> query;
query = base.CreateQuery<PlainTextPodEntity>("GetPlainTextResults");
if ((Input != null)) {
query = query.AddQueryOption("Input", string.Concat("\'", Input, "\'"));
}
if ((Location != null)) {
query = query.AddQueryOption("Location", string.Concat("\'", Location, "\'"));
}
if ((LatitudeLongitude != null)) {
query = query.AddQueryOption("LatitudeLongitude", string.Concat("\'", LatitudeLongitude, "\'"));
}
if (((Width != null)
&& (Width.HasValue == true))) {
query = query.AddQueryOption("Width", Width.Value);
}
return query;
}
}
}
あなたはこれについてもっと詳しく知るためのリンクがありますか?私はそれを使って作業しようとしていますが、C#の新機能(Javaから来ている)ではコードをうまく動かすことができません(コンパイルすると結果が出力されないか、コンソールやラベルに)、それはAPPIDを渡すように見えません、あなたはそれを必要としないのですか? – Nick
@nick 'Console.Write(" Hello World ");'はコンソールにものを得る方法です。テキストボックスやラベルを画面に置き、 'label1.text =" hello world "と入力します。一度それをしたら、このクラスで作業してください。正直言って、私は1年以上でこれを見ていないので、私はそれを使う方法を忘れています。 Azure Dallasウェブサイトをチェックしてください。 – LamonteCristo
大丈夫、指示と迅速な対応に感謝します。 – Nick
- 1. なぜMutationObserverの複雑さですか?私は不必要な複雑さを特定し、<a href="https://developer.mozilla.org/en/docs/Web/API/MutationObserver" rel="nofollow noreferrer">MutationObserver API</a>を見て、そしてそれのための私のラッパー関数を書いた
- 2. C++バックエンドは、私はPythonのAPIに++ <a href="https://github.com/gtkqq/libwebqq.git" rel="noreferrer">libwebqq</a></p> <p>をC言語で書かれたライブラリをラップしていますブースト機能で定義されているタイプがあり
- 3. 私はこれは私が私のプロジェクトでそれを含めています方法です<a href="https://mdbootstrap.com/" rel="nofollow noreferrer">mdbootstrap</a></p> <p>含まれるようにWebPACKのを使用していますWebPACKの
- 4. 私は私の<a href="http://plugin.bearsthemes.com/jquery/OwlFilter/" rel="nofollow noreferrer">owl carousel</a></p> <p>で項目をフィルタリングするために、このプラグインを使用しています。しかし、それは動作していない
- 5. 辞書内の辞書付きPymongoクエリ?</p> <pre><code>{"ONE": {"TWO": {"THREE":"5"}}} </code></pre> <p>私は<a href="http://api.mongodb.org/python/current/api/pymongo/collection.html" rel="nofollow">Pymongo <code>find</code> API</a>を使用してMongoDBのを照会したいが、働いていない:
- 6. のpython3のデフォルトのエンコーディング私は<a href="http://inginious.readthedocs.io" rel="noreferrer">inginious</a>と呼ばれるフレームワークを使用していますし、そのテンプレートをレンダリングする<a href="http://webpy.org/" rel="noreferrer">web.py</a>を使用しています
- 7. cosmosdb MongoのAPIは私が<strong>のMongoDB API</strong><br> を使用しています、私はそれには紺碧の<br> に<strong>cosmosdb</strong>を使用していますいくつかのコマンド
- 8. PGTとPGTIOUの保存CASが生成する
- 9. Cで書かれたCSSセレクタエンジンはありますか?私は私が探しているものの例としてはC.</p> <p>で書かれたオープンソース<a href="http://www.w3.org/TR/css3-selectors/#selectors" rel="nofollow" title="CSS Selectors">CSS selector</a>エンジンの例を探しています
- 10. リボンジェネレータは、私が<a href="http://windowsribbon.codeplex.com/" rel="nofollow">http://windowsribbon.codeplex.com/</a></p> <p>からライブラリを使用してWindowsリボンAPIを使用するためのセットアップに自分の.NETのWinFormsアプリをしようとしています.ribbonファイル
- 11. 私は<a href="https://www.primefaces.org/primeng/#/" rel="nofollow noreferrer">PrimeNG</a><p> </p><a href="https://www.primefaces.org/" rel="nofollow noreferrer">primefaces.org</a>からすべてがうまく機能している使用しています
- 12. にJavaScriptで書かれており、言い換えれば<a href="http://cocoon.io" rel="nofollow">http://cocoon.io</a></p> <p>によって客観Cに組み込まれて、私はアプリを持っているアプリストア
- 13. 私の<a href=""></a>は機能していませんか?
- 14. VSTSノードAPI - 、特に<a href="https://github.com/Microsoft/vsts-node-api/blob/master/api/IdentitiesApi.ts" rel="nofollow noreferrer">Identities API</a> - 私は<a href="https://github.com/Microsoft/vsts-node-api/" rel="nofollow noreferrer">VSTS Node Api</a>といくつかの問題を抱えているアイデンティティAPI
- 15. 目的は、製品タイプ「com.apple.product-type.framework」私は<a href="https://github.com/soundcloud/cocoa-api-wrapper" rel="nofollow">these instructions</a>を以下のiPhone用てSoundcloudのAPIラッパーを使用しようとしている今、私はこのエラーを取得してい
- 16. 検証スキーマ<a href="https://github.com/hapijs/joi" rel="nofollow noreferrer">joi</a></p> <p>を使用して、私のスキーマを検証するので、私は、この書いている間、私はエラーを取得しています
- 17. ラップしているものにかかわらず、どの "a"タグがクリックされたときにクリックハンドラを処理する方法は?</p> <pre><code><a href="/foo">bar</a> <a href="/"> <div></div> </a> </code></pre> <p>そして、私はANY「」タグが(jQueryを使って)クリックされたときに処理ハンドラを書きたい:
- 18. いつPromise.all()の句が実行されましたか?私は<a href="http://bluebirdjs.com/docs/api/promise.all.html" rel="nofollow">http://bluebirdjs.com/docs/api/promise.all.html</a></p> <p>特にコードから、このコードスニペットを見つめてる
- 19. DisplayTimeは、私が <a href="http://tooltipservice.codeplex.com/" rel="nofollow">http://tooltipservice.codeplex.com/</a></p> <p>を使用していますし、どのような値Iが設定されているため、私はこのコントロールに問題があり
- 20. Mottie仮想キーボードは、私はそれの周りにこの<a href="https://github.com/antonio-spinelli/ng-virtual-keyboard" rel="nofollow">angular wrapper</a>で<a href="https://github.com/Mottie/Keyboard" rel="nofollow">Mottie virtual keyboard</a>を使用しています
- 21. GoogleドライブAPI私は(のOAuth2経由<strong>ユーザー</strong>をしませ認証するためにリフレッシュトークンを使用してい<a href="https://developers.google.com/api-client-library/php/start/get_started" rel="nofollow">PHP SDK for the Google Drive API</a></li> <li>を使用するには、私のプロジェクトの設定をしました
- 22. .htaccessファイルは、私はDebianの8の上だと私は<a href="http://my-domain.unice.fr/social" rel="nofollow">http://my-domain.unice.fr/social</a>でウェブサイトを持っていると私は私が持っている私の.htaccessで<a href="http://my-domain.unice./" rel="nofollow">http://my-domain.unice./</a></p> <p>でこれをリダイレクトしたい
- 23. Conguring Hound.ciは、私は私のコードのスタイル警官として<strong><a href="https://houndci.com/" rel="nofollow">Hound CI</a></strong>、と私のCSSの命名のための<strong><a href="http://getbem.com/introduction/" rel="nofollow">BEM</a></strong>を使用していますBEM
- 24. PHP:それはPHP</p>私は新しいPDFを作成したURLの元<a href="http://www.cnn.com" rel="nofollow">http://www.cnn.com</a></p> <p>を読んで、サーバに格納したい <p>を使用して
- 25. jQueryのアヤックス、私は画像<a href="http://www.finalwebsites.com/demos/php_ajax_upload_example.php" rel="nofollow">http://www.finalwebsites.com/demos/php_ajax_upload_example.php</a></p> <p>をアップロードするには、このプラグインを使用しています。しかし、これは動作していないAJAX
- 26. 私は<strong><a href="https://github.com/carhartl/jquery-cookie" rel="nofollow">jquery cookie</a></strong>プラグインを使用して、ここに私のコードです名前
- 27. ngDialogが、私はこれが私のコントローラであり、<a href="https://github.com/likeastore/ngDialog#api" rel="nofollow">https://github.com/likeastore/ngDialog#api</a></p> <p>をngDialogを使用していますngのクリック
- 28. はJQueryの.html()私は<a href="http://onsen.io" rel="nofollow noreferrer">Onsen UI</a> + jQueryのを使用してい
- 29. RESTful APIのAPIキー暗号化?</p> <p><a href="http://myapi.com/apikey=mykey" rel="nofollow noreferrer">http://myapi.com/apikey=mykey</a></p> <p>しかし、この場合には、ウェブクローラを使用して、人々はAPIキーを見ることができるので、私は疑問に思う:
- 30. fの代わりに(_ < - f)を使用していますか?このZeroMQ <a href="http://zguide.zeromq.org/hs:hwclient" rel="nofollow">HelloWorldClient.hs</a>コードスニペットを見て
どういうところ? –
VB用のライブラリは、バージョン1.0の「プレビュー」構文のように見えます。それは非常に時代遅れです。より良いラッパーへの参照はありがたいです – LamonteCristo
したがって、問題はVB.NETとは関係ありません。それは時代遅れのラッパーですか? VB.NETで動作すると、C# - * *で動作するためです。 –