Interface ISpecification<T>
Resolves a condition based on the provided parameter.
Namespace: ExtendedXmlSerializer.Core.Specifications
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface ISpecification<in T>
  Type Parameters
| 
        T
         The parameter type  | 
    
Methods
IsSatisfiedBy(T)
Returns a boolean based on the provided parameter.
Declaration
bool IsSatisfiedBy(T parameter)
  Parameters
| 
        T
        parameter
         The parameter from which to resolve the condition.  | 
    
Returns
| 
        System.Boolean
         The condition based on the provided parameter.  |