BulkAPIResponse - BulkData.Count Crash with CMD
Hello.
I had create winform in C#.
This is work fine with your help, but i have got new problem when i start it with CMD (i administrator too).
I select records with pagination.
-> while (Limit != 0)
ZCRMModule ModuleSel = ZCRMSDK_CRUD.ZCRMModule.GetInstance(module);
ZCRMSDK_RESPONSE.BulkAPIResponse<ZCRMSDK_CRUD.ZCRMRecord> response = ModuleSel.GetRecords(null,Page,200,null) ;
Limit = response.BulkData.Count;
it work normally but when i star with cmd, this crash on "Limit = response.BulkData.Count;" without problem.
and i can't catch problem with try / catch.
Thanks a lot