projects/wms-framework/src/lib/wcfserviceinvocationsupport/SoapAsyncResult.ts
Properties |
|
AsyncState |
Type : any
|
Optional callback |
Type : function
|
Optional classConstructor |
Type : any
|
IsCompleted |
Type : boolean
|
resultData |
Type : any
|
import { IAsyncResult } from './AsyncResultSupport';
export class SoapAsyncResult implements IAsyncResult {
AsyncState: any;
IsCompleted: boolean;
classConstructor?: any;
callback?: (x: any) => void;
resultData: any;
}