4 instantiations of DictionaryContent
System.Data.Services (4)
System\Data\Services\Epm\EpmContentSerializer.cs (1)
280
c = new
DictionaryContent
();
System\Data\Services\Serializers\DictionaryContent.cs (1)
99
return new
DictionaryContent
(this);
System\Data\Services\Serializers\SyndicationSerializer.cs (2)
415
DictionaryContent valueProperties = new
DictionaryContent
(expectedType.Properties.Count);
522
DictionaryContent content = new
DictionaryContent
(actualResourceType.Properties.Count);
21 references to DictionaryContent
System.Data.Services (21)
System\Data\Services\Epm\EpmContentSerializer.cs (4)
97
internal void Serialize(
DictionaryContent
content, DataServiceProviderWrapper provider)
250
internal void AddNullValuesToContent(
DictionaryContent
content)
258
private void AddNullValuesToContent(EpmNullValuedPropertyNode currentRoot,
DictionaryContent
currentContent)
263
DictionaryContent
c = currentContent.Lookup(node.Name, out found);
System\Data\Services\Providers\ResourceType.cs (2)
82
private Action<object, System.Data.Services.Serializers.
DictionaryContent
> dictionarySerializerDelegate;
461
internal Action<object, System.Data.Services.Serializers.
DictionaryContent
> DictionarySerializerDelegate
System\Data\Services\Serializers\DictionaryContent.cs (7)
67
private DictionaryContent(
DictionaryContent
other)
110
value is
DictionaryContent
|| value is string,
160
internal
DictionaryContent
Lookup(string propertyName, out bool found)
169
Debug.Assert(value is
DictionaryContent
, "Must only look for complex properties, primitives must not be found");
170
return value as
DictionaryContent
;
210
else if (propertyValue is
DictionaryContent
)
213
((
DictionaryContent
)propertyValue).WritePropertyContentsTo(writer);
System\Data\Services\Serializers\SyndicationSerializer.cs (8)
113
internal static void WritePrimitiveValue(object primitive, string propertyName, string expectedTypeName,
DictionaryContent
content)
402
private void WriteComplexObjectValue(object element, string propertyName, ResourceType expectedType, string relativeUri,
DictionaryContent
content, EpmSourcePathSegment currentSourceRoot)
415
DictionaryContent
valueProperties = new DictionaryContent(expectedType.Properties.Count);
522
DictionaryContent
content = new DictionaryContent(actualResourceType.Properties.Count);
745
private void WriteObjectProperties(IExpandedResult expanded, object customObject, ResourceType resourceType, Uri absoluteUri, string relativeUri, SyndicationItem item,
DictionaryContent
content, EpmSourcePathSegment currentSourceRoot)
784
Type[] parameterTypes = new Type[] { typeof(object), typeof(
DictionaryContent
) };
816
action = (Action<object,
DictionaryContent
>)method.CreateDelegate(typeof(Action<object,
DictionaryContent
>), null);