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

GetInterface() public method

public GetInterface ( string name ) : Type
name string
return System.Type
            public override Type GetInterface(string name)
            {
                return this._typeInfo.ImplementedInterfaces.FirstOrDefault(x => (x.Namespace + "." + x.Name) == name);
            }