AWSSDK_DotNet35.UnitTests.TestTools.WAFRegionalMethodCustomizationsTests.EnsureSimpleMethodExists C# (CSharp) Méthode

EnsureSimpleMethodExists() public méthode

public EnsureSimpleMethodExists ( Type type, string methodName, Type simpleParams ) : void
type System.Type
methodName string
simpleParams System.Type
Résultat void
        void EnsureSimpleMethodExists(Type type, string methodName, Type[] simpleParams)
        {
            Assert.IsNotNull(type.GetMethod(methodName, simpleParams), "Failed to find simple method " + methodName);
        }
    }