RetrieveProducedImagesForDocumentCompletedEventArgs
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace kCura.EDDS.WebAPI.SearchManagerBase
{
[GeneratedCode("System.Web.Services", "4.8.3761.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
public class RetrieveProducedImagesForDocumentCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public DataSet Result {
get {
RaiseExceptionIfNecessary();
return (DataSet)results[0];
}
}
internal RetrieveProducedImagesForDocumentCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, RuntimeHelpers.GetObjectValue(userState))
{
this.results = results;
}
}
}