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