Mono.Cecil.Cil.CodeReader.ReadCustomDebugInformations C# (CSharp) Method

ReadCustomDebugInformations() private method

private ReadCustomDebugInformations ( MethodDefinition method ) : void
method MethodDefinition
return void
        void ReadCustomDebugInformations(MethodDefinition method)
        {
            var custom_infos = method.custom_infos;

            for (int i = 0; i < custom_infos.Count; i++) {
                var state_machine_scope = custom_infos [i] as StateMachineScopeDebugInformation;
                if (state_machine_scope != null)
                    ReadStateMachineScope (state_machine_scope);

                var async_method = custom_infos [i] as AsyncMethodBodyDebugInformation;
                if (async_method != null)
                    ReadAsyncMethodBody (async_method);
            }
        }