System.Reflection.RuntimeReflectionExtensions.GetRuntimeInterfaceMap C# (CSharp) 메소드

GetRuntimeInterfaceMap() 공개 정적인 메소드

public static GetRuntimeInterfaceMap ( this typeInfo, Type interfaceType ) : InterfaceMapping
typeInfo this
interfaceType Type
리턴 InterfaceMapping
		public static InterfaceMapping GetRuntimeInterfaceMap (this TypeInfo typeInfo, Type interfaceType)
		{
			if (typeInfo == null)
				throw new ArgumentNullException ("typeInfo");

			return typeInfo.GetInterfaceMap (interfaceType);
		}