Unplanned
Last Updated: 21 Nov 2019 12:44 by ADMIN
Joe
Created on: 15 Nov 2019 15:44
Type: Bug Report
0
Fails to decompile certain .Net code

I downloaded the following from Microsoft - these are used by the Azure Service Fabric Cluster - and they have issues:

http://download.microsoft.com/download/6/5/6/656AA596-B832-4F31-A026-D29A212E041D/ServiceFabricNodeBootstrapUpgradeAgent.1.0.0.188.zip

 

http://download.microsoft.com/download/6/5/6/656AA596-B832-4F31-A026-D29A212E041D/ServiceFabricNodeBootstrapAgent.1.0.0.188.zip

 

I am trying to determine where they build an http string. To read the code, it looks like they do nothing. My guess is there i something 'special" going on. Looks like an opportunity to build out Just-Decompile...

 

 

Upon de-compiling, the actual meat of the services is (whatever this means):

 

        private async void ThreadProc(object state)
        {
            Service.<ThreadProc>d__7 variable = new Service.<ThreadProc>d__7();
            variable.<>4__this = this;
            variable.<>t__builder = AsyncVoidMethodBuilder.Create();
            variable.<>1__state = -1;
            variable.<>t__builder.Start<Service.<ThreadProc>d__7>(ref variable);
        }

 

 

 

 

 

 


0 comments