Amazon.Util.Internal.TypeFactory.TypeInfoWrapper.GetMethod C# (CSharp) Method

GetMethod() public method

public GetMethod ( string name ) : MethodInfo
name string
return System.Reflection.MethodInfo
            public override MethodInfo GetMethod(string name)
            {
                return this._type.GetRuntimeMethods().FirstOrDefault(x => x.Name == name);
            }

Same methods

TypeFactory.TypeInfoWrapper::GetMethod ( string name, ITypeInfo paramTypes ) : MethodInfo