18 references to PropertyName
System.Data.Services (18)
System\Data\Services\Providers\BasicExpandProvider.cs (3)
754
result.Append(child.Node.
PropertyName
);
882
if (String.Equals(child.Node.
PropertyName
, name, StringComparison.Ordinal))
921
this.AddProjectedProperty(node.
PropertyName
, node.Property);
System\Data\Services\Providers\ExpandedProjectionNode.cs (4)
266
projectionNode => String.Equals(projectionNode.
PropertyName
, propertyName, StringComparison.Ordinal));
274
Debug.Assert(this.FindNode(node.
PropertyName
) == null, "Trying to add a duplicate node.");
389
return String.Compare(x.
PropertyName
, y.
PropertyName
, StringComparison.Ordinal);
System\Data\Services\Providers\ObjectContextServiceProvider.cs (3)
1271
expandedNode.
PropertyName
.Length == 0 || pathSegments[pathSegments.Count - 1] == expandedNode.
PropertyName
,
1281
pathSegments.Add(childExpandedNode.
PropertyName
);
System\Data\Services\RequestQueryProcessor.cs (1)
664
throw DataServiceException.CreateBadRequestError(Strings.RequestQueryProcessor_ProjectedPropertyWithoutMatchingExpand(currentNode.
PropertyName
));
System\Data\Services\Serializers\JsonSerializer.cs (1)
804
string propertyName = projectionNode.
PropertyName
;
System\Data\Services\Serializers\Serializer.cs (5)
933
AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childNode.
PropertyName
);
940
parentPathSegments.Add(expandedChildNode.
PropertyName
);
956
AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childNode.
PropertyName
+ "/*");
971
AppendProjectionOrExpansionPath(expansionPaths, parentPathSegments, childNode.
PropertyName
);
984
AppendProjectionOrExpansionPath(projectionPaths, parentPathSegments, childToProject.
PropertyName
);
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
940
string propertyName = projectionNode.
PropertyName
;