diff --git a/Microsoft.Azure.Amqp/Amqp/Encoding/AmqpBitConverter.cs b/Microsoft.Azure.Amqp/Amqp/Encoding/AmqpBitConverter.cs index 9c67bf52..7657c8f1 100644 --- a/Microsoft.Azure.Amqp/Amqp/Encoding/AmqpBitConverter.cs +++ b/Microsoft.Azure.Amqp/Amqp/Encoding/AmqpBitConverter.cs @@ -105,6 +105,9 @@ public static double ReadDouble(ByteBuffer buffer) public static Guid ReadUuid(ByteBuffer buffer) { +#if PCL + throw new NotImplementedException(); +#else uint a = ReadUInt(buffer); ushort b = ReadUShort(buffer); ushort c = ReadUShort(buffer); @@ -119,6 +122,7 @@ public static Guid ReadUuid(ByteBuffer buffer) byte k = buffer.Buffer[buffer.Offset + 7]; buffer.Complete(FixedWidth.ULong); return new Guid(a, b, c, d, e, f, g, h, i, j, k); +#endif } public static void ReadBytes(ByteBuffer buffer, byte[] data, int offset, int count)