Example #1
0
 public bool Equals(RuntimeTypeKey other)
 {
     return(Eq.Values(this, other).Check(x => x.Region).Check(x => x.Name));
 }
Example #2
0
 public bool Equals(MapTypeKey other) =>
 Eq.Values(this, other).Check(x => x.Area).Check(x => x.Name);
Example #3
0
 public bool Equals(AreaTypeName other) =>
 Eq.Values(this, other).Check(x => x._name);
Example #4
0
 public bool Equals(FlowKey other) =>
 Eq.Values(this, other).Check(x => x.Type).Check(x => x.Id);
Example #5
0
 public bool Equals(HttpDomain other) =>
 Eq.Values(this, other).Check(x => x.Name);
Example #6
0
 public bool Equals(QueryETag other) =>
 Eq.Values(this, other).Check(x => x.Key).Check(x => x.Checkpoint);
Example #7
0
 public bool Equals(HttpLink other)
 {
     return(Eq.Values(this, other).Check(x => x.Host).Check(x => x.Resource));
 }
Example #8
0
 public bool Equals(FileLink other)
 {
     return(Eq.Values(this, other).Check(x => x.Folder).Check(x => x.Name));
 }
Example #9
0
 public bool Equals(HttpDomain other)
 {
     return(Eq.Values(this, other).Check(x => x.Name));
 }
Example #10
0
 public bool Equals(HttpResource other)
 {
     return(Eq.Values(this, other).Check(x => x.Path).Check(x => x.Query));
 }
Example #11
0
 public bool Equals(FolderResource other) =>
 Eq.Values(this, other).Check(x => x.Path);
Example #12
0
 public bool Equals(TimelinePosition other)
 {
     return(Eq.Values(this, other).Check(x => x._point));
 }
Example #13
0
 public bool Equals(DurablePrefix other) =>
 Eq.Values(this, other).Check(x => x._value);
Example #14
0
 public bool Equals(HttpLink other) =>
 Eq.Values(this, other).Check(x => x.Host).Check(x => x.Resource);
Example #15
0
 public bool Equals(FileName other)
 {
     return(Eq.Values(this, other).Check(x => x.Text).Check(x => x.Extension));
 }
Example #16
0
 public bool Equals(HttpHost other)
 {
     return(Eq.Values(this, other).Check(x => x.Secure).Check(x => x.Domain).Check(x => x.Port));
 }
Example #17
0
 public bool Equals(HttpQueryPair other)
 {
     return(Eq.Values(this, other).Check(x => x.Key).Check(x => x.Value));
 }
Example #18
0
 public bool Equals(Sha1 other) =>
 Eq.Values(this, other).Check(x => x._hex);
Example #19
0
 public bool Equals(FlowKey other)
 {
     return(Eq.Values(this, other).Check(x => x.Type).Check(x => x.Id));
 }
Example #20
0
 public bool Equals(LinkText other) =>
 Eq.Values(this, other).Check(x => x.Value);
Example #21
0
 public bool Equals(Base64 other) =>
 Eq.Values(this, other).Check(x => x._text);
Example #22
0
 public bool Equals(TimelinePosition other) =>
 Eq.Values(this, other).Check(x => x._point);
Example #23
0
 public bool Equals(FileResource other) =>
 Eq.Values(this, other).Check(x => x.Folder).Check(x => x.Name);
Example #24
0
 public bool Equals(AreaTypeInfo other) =>
 Eq.Values(this, other).Check(x => x.DeclaredType);
Example #25
0
 public bool Equals(RuntimeRegionKey other)
 {
     return(Eq.Values(this, other).Check(x => x._name));
 }
Example #26
0
 public bool Equals(Sha1 other)
 {
     return(Eq.Values(this, other).Check(x => x._hex));
 }
Example #27
0
 public bool Equals(TypeName other) =>
 Eq.Values(this, other).Check(x => x._value);
Example #28
0
 public bool Equals(HttpAuthorization other)
 {
     return(Eq.Values(this, other).Check(x => x.Type).Check(x => x.Credentials));
 }
Example #29
0
 public bool Equals(Base64 other)
 {
     return(Eq.Values(this, other).Check(x => x._text));
 }
Example #30
0
 public bool Equals(FolderLink other) =>
 Eq.Values(this, other).Check(x => x.Root).Check(x => x.Resource);