// Token: 0x0600018F RID: 399 RVA: 0x000083B0 File Offset: 0x000065B0
 public ICancelableAsyncResult BeginModLinkAtt(ProtocolRequestInfo protocolRequestInfo, IntPtr contextHandle, NspiModLinkAttFlags flags, PropertyTag propTag, int mid, byte[][] entryIds, CancelableAsyncCallback asyncCallback, object asyncState)
 {
     return(this.BeginContextWrapper("BeginModLinkAtt", asyncCallback, asyncState, contextHandle, (NspiContext context) => new NspiModLinkAttDispatchTask(asyncCallback, asyncState, protocolRequestInfo, context, flags, propTag, mid, entryIds)));
 }
Пример #2
0
 public NspiStatus ModLinkAtt(NspiModLinkAttFlags flags, PropTag propTag, int mid, byte[][] entryIDs)
 {
     return(this.client.ModLinkAtt(flags, (int)propTag, mid, entryIDs));
 }
 public NspiModLinkAttDispatchTask(CancelableAsyncCallback asyncCallback, object asyncState, ProtocolRequestInfo protocolRequestInfo, NspiContext context, NspiModLinkAttFlags flags, PropertyTag propertyTag, int mid, byte[][] rawEntryIds) : base(asyncCallback, asyncState, protocolRequestInfo, context)
 {
     this.flags       = flags;
     this.propertyTag = propertyTag;
     this.mid         = mid;
     this.rawEntryIds = rawEntryIds;
 }