void StopBoyomi() { try { var BouyomiChan = new BouyomiChanClient(); int taskId = BouyomiChan.AddTalkTask2("むおん"); BouyomiChan.Dispose(); } catch { } }
/// <summary> /// 初期化 /// </summary> private void init() { if (disposed) { return; } // 棒読みちゃんクライアント bouyomiChanClient = new BouyomiChanClient(); }
/// <summary> /// 使用中のリソースをすべてクリーンアップします。 /// </summary> /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param> protected virtual void Dispose(bool disposing) { if (!disposed) { // 棒読みちゃんクライアント破棄処理 if (bouyomiChanClient != null) { bouyomiChanClient.Dispose(); bouyomiChanClient = null; } disposed = true; } }
public BouyomiClientWrapper() : base() { this.client = new BouyomiChanClient(); }
public BouyomiClientWrapper() : base() { this.client = new BouyomiChanClient(); this.config = Config.GetConfig(); }