System.Reflection.RuntimeReflectionExtensions.GetRuntimeInterfaceMap C# (CSharp) Method

GetRuntimeInterfaceMap() public static method

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

			return typeInfo.GetInterfaceMap (interfaceType);
		}