public static void SerializeResourceInCoral(IResource resource, CoralBody coral, Dictionary <string, CBORObject> dictionary, ResourceAttributes otherAttributes = null, Uri uriRelative = null, bool isEndPoint = false) { CBORObject obj = CBORObject.NewArray(); CBORObject href; if (uriRelative == null) { href = Ciri.ToCbor(resource.Path + resource.Name); } else { href = Ciri.ToCbor(new Uri(uriRelative, resource.Path + resource.Name)); } CoralBody body = new CoralBody(); SerializeAttributesInCoral(resource.Attributes, body, dictionary, uriRelative); if (otherAttributes != null) { SerializeAttributesInCoral(otherAttributes, body, dictionary, uriRelative); } if (body.Length == 0) { body = null; } CoralItem item = new CoralLink(isEndPoint ? "http://coreapps.org/ref#rd-unit" : "http://coreapps.org/reef#rd-item", href, body); coral.Add(item); }
public override CBORObject EncodeToCBORObject(CoralDictionary dictionary) { CBORObject node = CBORObject.NewArray(); node.Add(1); node.Add(Ciri.ToCbor(Uri)); return(node); }