Amazon.Util.Internal.TypeFactory.TypeInfoWrapper.GetInterface C# (CSharp) 메소드

GetInterface() 공개 메소드

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