Inheritance: ValueObjectBase
Ejemplo n.º 1
0
 public bool Equals(SerializationOptions other)
 {
     return((other != null) && GetHashCode().Equals(other.GetHashCode()));
 }
Ejemplo n.º 2
0
 public bool Equals(SerializationOptions other) {
     return (other != null) && GetHashCode().Equals(other.GetHashCode());
 }
Ejemplo n.º 3
0
 public CacheKey(Type objectType, SerializationOptions options)
 {
     ObjectType = objectType;
     Options    = options;
 }