You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some problem in usage of .net sdk's.
TransloaditResponse responseFirst = null;
ITransloadit transloadit = new Transloadit.Transloadit();
IAssemblyBuilder assembly = new AssemblyBuilder();
String transloadPost = String.Empty;
for (int i = 0; i < Request.Files.Count; i++ )
{
assembly.AddFile(Request.Files[i].FileName);
I got a sync response with responseFirst.Data["ok"] = ASSEMBLY_EXECUTING.
But I need async response with responseFirst.Data["ok"] = ASSEMBLY_COMPLETED.
I want to wait till process is completed like "PHP integration". I do not want to use notify_url parameter.
But I did not find that how I can use .Net sdk to get asyc response or wait while assembly is completed.
The text was updated successfully, but these errors were encountered:
I have some problem in usage of .net sdk's.
TransloaditResponse responseFirst = null;
ITransloadit transloadit = new Transloadit.Transloadit();
IAssemblyBuilder assembly = new AssemblyBuilder();
String transloadPost = String.Empty;
for (int i = 0; i < Request.Files.Count; i++ )
{
assembly.AddFile(Request.Files[i].FileName);
assembly.SetTemplateID(transloadit.Config.DefaultTemplateID);
responseFirst = transloadit.InvokeAssembly(assembly);
I got a sync response with responseFirst.Data["ok"] = ASSEMBLY_EXECUTING.
But I need async response with responseFirst.Data["ok"] = ASSEMBLY_COMPLETED.
I want to wait till process is completed like "PHP integration". I do not want to use notify_url parameter.
But I did not find that how I can use .Net sdk to get asyc response or wait while assembly is completed.
The text was updated successfully, but these errors were encountered: