System.Xml.Tests.ReflectionTestCaseBase.WLoad C# (CSharp) Méthode

WLoad() protected méthode

protected WLoad ( XslCompiledTransform instance, MethodInfo meth, Byte bytes, Type types ) : void
instance System.Xml.Xsl.XslCompiledTransform
meth System.Reflection.MethodInfo
bytes Byte
types System.Type
Résultat void
        protected void WLoad(XslCompiledTransform instance, MethodInfo meth, Byte[] bytes, Type[] types)
        {
            instance.Load(meth, bytes, types);
            /*
            Type[] paramTypes = new Type[3] { typeof(MethodInfo), typeof(Byte[]), typeof(Type[]) };

            MethodInfo m = typeof(XslCompiledTransform).GetMethod("Load",
                BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public,
                null,
                paramTypes,
                null);

            m.Invoke(instance, new Object[] { meth, bytes, types });
            */
        }