KeplerDocumentManager
using kCura.WinEDDS.Mapping;
using Relativity.DataExchange.Service;
using System;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace kCura.WinEDDS.Service.Replacement
{
public class KeplerDocumentManager : KeplerManager, IDocumentManager
{
public KeplerDocumentManager(IServiceProxyFactory serviceProxyFactory, IServiceExceptionMapper exceptionMapper, Func<string> correlationIdFunc)
: base(serviceProxyFactory, exceptionMapper, correlationIdFunc)
{
}
public int[] RetrieveAllUnsupportedOiFileIds()
{
return Execute(delegate(IServiceProxyFactory s) {
VB$StateMachine___Lambda$__1-0 stateMachine = default(VB$StateMachine___Lambda$__1-0);
stateMachine.$VB$Me = this;
stateMachine.$VB$Local_s = s;
stateMachine.$State = -1;
stateMachine.$Builder = AsyncTaskMethodBuilder<int[]>.Create();
stateMachine.$Builder.Start(ref stateMachine);
return stateMachine.$Builder.Task;
});
}
int[] IDocumentManager.RetrieveAllUnsupportedOiFileIds()
{
return this.RetrieveAllUnsupportedOiFileIds();
}
[CompilerGenerated]
[AsyncStateMachine(typeof(VB$StateMachine___Lambda$__1-0))]
private Task<int[]> _Lambda$__1-0(IServiceProxyFactory s)
{
VB$StateMachine___Lambda$__1-0 stateMachine = default(VB$StateMachine___Lambda$__1-0);
stateMachine.$VB$Me = this;
stateMachine.$VB$Local_s = s;
stateMachine.$State = -1;
stateMachine.$Builder = AsyncTaskMethodBuilder<int[]>.Create();
stateMachine.$Builder.Start(ref stateMachine);
return stateMachine.$Builder.Task;
}
}
}