System.Xml.Xsl.XslTransform.DebuggerAddapter.DebuggerAddapter C# (CSharp) Method

DebuggerAddapter() public method

public DebuggerAddapter ( object unknownDebugger ) : System.Reflection
unknownDebugger object
return System.Reflection
            public DebuggerAddapter(object unknownDebugger)
            {
                _unknownDebugger = unknownDebugger;
                BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static;
                Type unknownType = unknownDebugger.GetType();
                _getBltIn = unknownType.GetMethod("GetBuiltInTemplatesUri", flags);
                _onCompile = unknownType.GetMethod("OnInstructionCompile", flags);
                _onExecute = unknownType.GetMethod("OnInstructionExecute", flags);
            }
            // ------------------ IXsltDebugger ---------------