ReadFileAsStringCompletedEventArgs
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
namespace Relativity.Transfer
{
[ExcludeFromCodeCoverage]
[GeneratedCode("wsdl", "4.6.1055.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
public class ReadFileAsStringCompletedEventArgs : AsyncCompletedEventArgs
{
private object[] results;
public byte[] Result {
get {
RaiseExceptionIfNecessary();
return (byte[])results[0];
}
}
internal ReadFileAsStringCompletedEventArgs(object[] results, Exception exception, bool cancelled, object userState)
: base(exception, cancelled, userState)
{
this.results = results;
}
}
}