Class AllSpecification<T>
Resolves a condition based on the provided parameter.
Inheritance
System.Object
    AllSpecification<T>
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: ExtendedXmlSerializer.Core.Specifications
Assembly: ExtendedXmlSerializer.dll
Syntax
public class AllSpecification<T> : ISpecification<T>
  Type Parameters
| 
        T
         The parameter type  | 
    
Constructors
AllSpecification(ISpecification<T>[])
Creates a new instance.
Declaration
public AllSpecification(params ISpecification<T>[] specifications)
  Parameters
| 
        ISpecification<T>[]
        specifications
         
  | 
    
Methods
IsSatisfiedBy(T)
Returns a boolean based on the provided parameter.
Declaration
public 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.  |