Example #1
0
 /// <remarks/>
 public void PublishSoftAsync(BaseItem baseInfo, Software s, PublishType pubType, long fsId) {
     this.PublishSoftAsync(baseInfo, s, pubType, fsId, null);
 }
Example #2
0
 /// <remarks/>
 public void PublishSoftAsync(BaseItem baseInfo, Software s, PublishType pubType, long fsId, object userState) {
     if ((this.PublishSoftOperationCompleted == null)) {
         this.PublishSoftOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPublishSoftOperationCompleted);
     }
     this.InvokeAsync("PublishSoft", new object[] {
                 baseInfo,
                 s,
                 pubType,
                 fsId}, this.PublishSoftOperationCompleted, userState);
 }
Example #3
0
 public void PublishSoft(BaseItem baseInfo, Software s, PublishType pubType, long fsId) {
     this.Invoke("PublishSoft", new object[] {
                 baseInfo,
                 s,
                 pubType,
                 fsId});
 }