2009-03-10から1日間の記事一覧

WCF設定

client -> service設定とクラスの紐付き方■server の場合 クラス - service.name - service - endpoint(内包) service - service.behaviorConfiguration - behavior.name ■client の場合 クラス(サービス参照.interface) - endpoint.contract endpoint - e…

お手軽非同期

/// <summary> /// お手軽非同期 /// </summary> public class EasyAsync { /// <summary> /// 終了イベント /// </summary> static public event EventHandler Finished; /// <summary> /// 開始イベント /// </summary> static public event EventHandler Starting; /// <summary> /// 指定されたメソッドを非同期で実行します</summary>…