NETMF build errors
This commit is contained in:
Родитель
e6e75b4e54
Коммит
9e42ae48ad
|
@ -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.
|
||||
|
|
Загрузка…
Ссылка в новой задаче