AWSSDK_DotNet35.UnitTests.TestTools.WAFRegionalMethodCustomizationsTests.EnsureSimpleMethodExists C# (CSharp) 메소드

EnsureSimpleMethodExists() 공개 메소드

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