/// <summary> /// Write a JSON instance annotation name which represents a instance annotation. /// </summary> /// <param name="annotationName">The name of the instance annotation to write.</param> public void WriteInstanceAnnotationName(string annotationName) { Debug.Assert(annotationName.StartsWith(JsonLightConstants.ODataAnnotationNamespacePrefix, StringComparison.Ordinal), "annotationName.StartsWith(\"odata.\")"); jsonWriter.WriteInstanceAnnotationName(SimplifyODataAnnotationName(annotationName)); }
/// <summary> /// Writes the odata.type instance annotation with the specified type name. /// </summary> /// <param name="jsonWriter">The JSON writer to write to.</param> /// <param name="typeName">The type name to write.</param> internal static void WriteODataIdAnnotation(IJsonWriter jsonWriter, string value) { Debug.Assert(jsonWriter != null, "jsonWriter != null"); // "@odata.id": #"value" jsonWriter.WriteInstanceAnnotationName(ODataAnnotationNames.ODataId); jsonWriter.WriteValue(value); }
/// <summary> /// Writes the odata.type instance annotation with the specified type name. /// </summary> /// <param name="jsonWriter">The JSON writer to write to.</param> /// <param name="typeName">The type name to write.</param> internal static void WriteODataTypeInstanceAnnotation(IJsonWriter jsonWriter, string typeName) { Debug.Assert(jsonWriter != null, "jsonWriter != null"); Debug.Assert(typeName != null, "typeName != null"); // "@odata.type": #"typename" jsonWriter.WriteInstanceAnnotationName(ODataAnnotationNames.ODataType); jsonWriter.WriteValue(PrefixTypeName(WriterUtils.RemoveEdmPrefixFromTypeName(typeName))); }
/// <summary> /// Write a JSON instance annotation name which represents a instance annotation. /// </summary> /// <param name="annotationName">The name of the instance annotation to write.</param> public void WriteInstanceAnnotationName(string annotationName) { this.AssertSynchronous(); Debug.Assert(!string.IsNullOrEmpty(annotationName), "!string.IsNullOrEmpty(annotationName)"); Debug.Assert(annotationName.StartsWith(JsonLightConstants.ODataAnnotationNamespacePrefix, StringComparison.Ordinal), "annotationName.StartsWith(\"odata.\")"); jsonWriter.WriteInstanceAnnotationName(SimplifyODataAnnotationName(annotationName)); }