Mask values to us with the enum ObexHeaderId.
For a list of all members of this type, see ObexHeaderIdMasks Members.
System.Object
Brecham.Obex.Pdus.ObexHeaderIdMasks
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
Mask values to us with the enum ObexHeaderId. The header value encodes which type it is in the top two bits, so one can use code like the following.
[C#]
ObexHeaderId headerId = ...;
bool isStringType = (headerId & ObexHeaderIdMasks.MaskType) == ObexHeaderIdMasks.TypeString;
Namespace: Brecham.Obex.Pdus
Assembly: Brecham.Obex (in Brecham.Obex.dll)
ObexHeaderIdMasks Members | Brecham.Obex.Pdus Namespace