123456789101112131415161718192021222324252627282930 |
- using System;
- using System.CodeDom.Compiler;
- using System.ComponentModel;
- using System.Diagnostics;
- namespace SPCwebServiceDll.spcwebapi
- {
- //[GeneratedCode(/*Could not decode attribute arguments.*/)]
- [DebuggerStepThrough]
- [DesignerCategory(/*Could not decode attribute arguments.*/)]
- public class spcapi_shortrunCompletedEventArgs : AsyncCompletedEventArgs
- {
- private object[] results;
- public string Result
- {
- get
- {
- RaiseExceptionIfNecessary();
- return (string)results[0];
- }
- }
- internal spcapi_shortrunCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
- : base(exception, cancelled, userState)
- {
- this.results = results;
- }
- }
- }
|