1 implementation of IProjectedResult
System.Data.Services (1)
System\Data\Services\Internal\ProjectedWrapper.cs (1)
24public abstract class ProjectedWrapper : IProjectedResult
23 references to IProjectedResult
System.Data.Services (23)
System\Data\Services\Internal\ProjectedWrapper.cs (1)
20/// <summary>Base class for all projected wrappers. The internal implementation of the <see cref="IProjectedResult"/>
System\Data\Services\Providers\BaseServiceProvider.cs (3)
219/// which returns instances of <see cref="IProjectedResult"/>. In that case property values are determined 220/// by calling the <see cref="IProjectedResult.GetProjectedPropertyValue"/> method instead of 223/// of <see cref="IExpandedResult"/> which in turn returns <see cref="IProjectedResult"/> from its
System\Data\Services\Providers\BasicExpandProvider.cs (3)
126/// which returns instances of <see cref="IProjectedResult"/>. In that case property values are determined 127/// by calling the <see cref="IProjectedResult.GetProjectedPropertyValue"/> method instead of 130/// of <see cref="IExpandedResult"/> which in turn returns <see cref="IProjectedResult"/> from its
System\Data\Services\Providers\IProjectionProvider.cs (3)
47/// which returns instances of <see cref="IProjectedResult"/>. In that case property values are determined 48/// by calling the <see cref="IProjectedResult.GetProjectedPropertyValue"/> method instead of 51/// of <see cref="IExpandedResult"/> which in turn returns <see cref="IProjectedResult"/> from its
System\Data\Services\Providers\ObjectContextServiceProvider.cs (3)
234/// which returns instances of <see cref="IProjectedResult"/>. In that case property values are determined 235/// by calling the <see cref="IProjectedResult.GetProjectedPropertyValue"/> method instead of 238/// of <see cref="IExpandedResult"/> which in turn returns <see cref="IProjectedResult"/> from its
System\Data\Services\Providers\ReflectionServiceProvider.cs (3)
135/// which returns instances of <see cref="IProjectedResult"/>. In that case property values are determined 136/// by calling the <see cref="IProjectedResult.GetProjectedPropertyValue"/> method instead of 139/// of <see cref="IExpandedResult"/> which in turn returns <see cref="IProjectedResult"/> from its
System\Data\Services\Providers\ResourceType.cs (1)
47private static readonly MethodInfo IProjectedResultGetProjectedPropertyValueMethodInfo = typeof(IProjectedResult).GetMethod(
System\Data\Services\Serializers\JsonSerializer.cs (2)
763((customObject is IProjectedResult) && (resourceType.FullName == ((IProjectedResult)customObject).ResourceTypeName)) ||
System\Data\Services\WebUtil.cs (4)
685IProjectedResult projectedResult = obj as IProjectedResult; 1496IProjectedResult projectedResult = resource as IProjectedResult;