C# Class Zephyr.Domain.ValueObject

Inheritance: BaseObject
显示文件 Open project: marufbd/Zephyr.NET

Public Methods

Method Description
Equals ( object obj ) : bool
GetHashCode ( ) : int
operator ( ) : bool

Protected Methods

Method Description
GetTypeSpecificSignatureProperties ( ) : IEnumerable

The getter for SignatureProperties for value objects should include the properties which make up the entirety of the object's properties; that's part of the definition of a value object.

This ensures that the value object has no properties decorated with the [DomainSignature] attribute.

Method Details

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

GetTypeSpecificSignatureProperties() protected method

The getter for SignatureProperties for value objects should include the properties which make up the entirety of the object's properties; that's part of the definition of a value object.
This ensures that the value object has no properties decorated with the [DomainSignature] attribute.
protected GetTypeSpecificSignatureProperties ( ) : IEnumerable
return IEnumerable

operator() public static method

public static operator ( ) : bool
return bool