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