コード例 #1
0
ファイル: SheifSourceDebug.cs プロジェクト: wangscript/tcgcms
 private void SheifSourceDebug_Load(object sender, EventArgs e)
 {
     sheifourceinfo = new TCG.SheifService.SheifSourceInfo();
     if (!string.IsNullOrEmpty(this.Resourceid))
     {
         sheifourceinfo = this.sheif.GetSheifSourceInfoById(this.Resourceid);
         if (sheifourceinfo != null)
         {
             this.SetSheifSource();
         }
     }
     else
     {
         this.tblisttopicdatarole.Text = "$1,SheifUrl\r\n$2,vcTitle";
         this.tbtopicdatarole.Text = "$1,vcTitle\r\n$2,vcContent";
     }
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: wangscript/tcgcms
 /// <remarks/>
 public void UpdateSheifSourceAsync(SheifSourceInfo source, object userState) {
     if ((this.UpdateSheifSourceOperationCompleted == null)) {
         this.UpdateSheifSourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSheifSourceOperationCompleted);
     }
     this.InvokeAsync("UpdateSheifSource", new object[] {
                 source}, this.UpdateSheifSourceOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: wangscript/tcgcms
 public int UpdateSheifSource(SheifSourceInfo source) {
     object[] results = this.Invoke("UpdateSheifSource", new object[] {
                 source});
     return ((int)(results[0]));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: wangscript/tcgcms
 /// <remarks/>
 public void UpdateSheifSourceAsync(SheifSourceInfo source) {
     this.UpdateSheifSourceAsync(source, null);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: wangscript/tcgcms
 /// <remarks/>
 public void AddSheifSourceAsync(SheifSourceInfo source) {
     this.AddSheifSourceAsync(source, null);
 }