コード例 #1
0
 public bool Equals(RuntimeTypeKey other)
 {
     return(Eq.Values(this, other).Check(x => x.Region).Check(x => x.Name));
 }
コード例 #2
0
ファイル: MapTypeKey.cs プロジェクト: AlexanderJohnston/Totem
 public bool Equals(MapTypeKey other) =>
 Eq.Values(this, other).Check(x => x.Area).Check(x => x.Name);
コード例 #3
0
ファイル: AreaTypeName.cs プロジェクト: jmptrader/BlazorUI
 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
ファイル: QueryETag.cs プロジェクト: AlexanderJohnston/Totem
 public bool Equals(QueryETag other) =>
 Eq.Values(this, other).Check(x => x.Key).Check(x => x.Checkpoint);
コード例 #7
0
ファイル: HttpLink.cs プロジェクト: snickroger/Totem
 public bool Equals(HttpLink other)
 {
     return(Eq.Values(this, other).Check(x => x.Host).Check(x => x.Resource));
 }
コード例 #8
0
ファイル: FileLink.cs プロジェクト: snickroger/Totem
 public bool Equals(FileLink other)
 {
     return(Eq.Values(this, other).Check(x => x.Folder).Check(x => x.Name));
 }
コード例 #9
0
ファイル: HttpDomain.cs プロジェクト: snickroger/Totem
 public bool Equals(HttpDomain other)
 {
     return(Eq.Values(this, other).Check(x => x.Name));
 }
コード例 #10
0
ファイル: HttpResource.cs プロジェクト: snickroger/Totem
 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
ファイル: TimelinePosition.cs プロジェクト: snickroger/Totem
 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
ファイル: HttpLink.cs プロジェクト: jmptrader/BlazorUI
 public bool Equals(HttpLink other) =>
 Eq.Values(this, other).Check(x => x.Host).Check(x => x.Resource);
コード例 #15
0
ファイル: FileName.cs プロジェクト: snickroger/Totem
 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
ファイル: HttpQueryPair.cs プロジェクト: snickroger/Totem
 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
ファイル: FlowKey.cs プロジェクト: snickroger/Totem
 public bool Equals(FlowKey other)
 {
     return(Eq.Values(this, other).Check(x => x.Type).Check(x => x.Id));
 }
コード例 #20
0
ファイル: LinkText.cs プロジェクト: jmptrader/BlazorUI
 public bool Equals(LinkText other) =>
 Eq.Values(this, other).Check(x => x.Value);
コード例 #21
0
ファイル: Base64.cs プロジェクト: jmptrader/BlazorUI
 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
ファイル: AreaTypeInfo.cs プロジェクト: jtark/Totem
 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);