This commit is contained in:
xinchen 2024-05-17 11:48:29 -07:00
Родитель e6e75b4e54
Коммит 9e42ae48ad
2 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -104,6 +104,21 @@ namespace Amqp
{ }
}
struct LinkId
{
string name;
public static LinkId Create(Connection connection, bool localRole, string name)
{
return new LinkId() { name = name };
}
public static bool Equals(LinkId a, LinkId b)
{
return string.Equals(a.name, b.name);
}
}
class Uri
{
public static string UnescapeDataString(string url)

Просмотреть файл

@ -67,6 +67,7 @@ namespace Amqp
End
}
#if !NETMF
struct LinkId : IEquatable<LinkId>
{
public string SourceContainer { get; private set; }
@ -136,6 +137,7 @@ namespace Amqp
return Equals(this, other);
}
}
#endif
/// <summary>
/// The Link class represents an AMQP link.