Hi,
I am having a weird issue.
Org version: 9.0.2.761
SDK Version: 9.0.2.409
.NET Version: 4.6.1
VS 2012
When stepping through my code in the debugger, this code always give me null value for both OrganizationWebProxyClient or OrganizationServiceProxy
var _orgService = (IOrganizationService)conn.OrganizationWebProxyClient != null ? (IOrganizationService)conn.OrganizationWebProxyClient : (IOrganizationService)conn.OrganizationServiceProxy;
But when I ran my code in non debug mode, everything works flawlessly
Any idea?