Esempio n. 1
0
 public int CompareTo(IChannelId other)
 {
     if (other is EmbeddedChannelId)
     {
         return(0);
     }
     return(string.Compare(this.AsLongText(), other.AsLongText(), StringComparison.Ordinal));
 }
Esempio n. 2
0
 public int CompareTo(IChannelId other)
 {
     if (other is EmbeddedChannelId)
     {
         return 0;
     }
     return string.Compare(this.AsLongText(), other.AsLongText(), StringComparison.Ordinal);
 }
Esempio n. 3
0
 public string AsLongText()
 {
     return(_parentId.AsLongText() + '/' + _id);
 }