Exemplo n.º 1
0
 public static bool IsServiceContractInterface(Type type)
 {
     return(ReflectionTools.IsPublicInterface(type) &&
            !type.IsGenericTypeDefinition &&
            GetServiceContractAttribute(type) != null);
 }