ServiceStack.Host.MetadataTypeExtensions.IsInterface C# (CSharp) Method

IsInterface() public static method

public static IsInterface ( this type ) : bool
type this
return bool
        public static bool IsInterface(this MetadataType type) => 
            type != null && type.IsInterface.GetValueOrDefault();