1 type derived from MaterializeAtom
System.Data.Services.Client (1)
System\Data\Services\Client\MaterializeFromAtom.cs (1)
606
private class ResultsWrapper :
MaterializeAtom
2 instantiations of MaterializeAtom
System.Data.Services.Client (2)
System\Data\Services\Client\DataServiceContext.cs (1)
5581
using (MaterializeAtom atom = new
MaterializeAtom
(this.Context, reader, qc, null, mergeOption))
System\Data\Services\Client\DataServiceRequest.cs (1)
92
return new
MaterializeAtom
(context, reader, queryComponents, plan, context.MergeOption);
38 references to MaterializeAtom
System.Data.Services.Client (38)
System\Data\Services\Client\AtomMaterializer.cs (4)
740
ClientType attributeSourceType =
MaterializeAtom
.GetEntryClientType(entry.TypeName, materializer.context, expectedType, false);
1214
nestedElementType =
MaterializeAtom
.GetEntryClientType(propertyTypeName, context, type, true);
1316
ClientConvert.IsKnownType(
MaterializeAtom
.GetEntryClientType(property.TypeName, context, prop.PropertyType, true).ElementType))
1693
ClientType actualType =
MaterializeAtom
.GetEntryClientType(entry.TypeName, this.context, expectedEntryType, true);
System\Data\Services\Client\AtomParser.cs (3)
231
MaterializeAtom
.SkipToEnd(this.reader);
306
return
MaterializeAtom
.ReadElementString(this.reader, true);
994
if (!long.TryParse(
MaterializeAtom
.ReadElementString(this.reader, true), System.Globalization.NumberStyles.Integer, System.Globalization.CultureInfo.InvariantCulture, out countValue))
System\Data\Services\Client\DataServiceContext.cs (11)
3094
private void HandleResponsePost(EntityDescriptor entry,
MaterializeAtom
materializer, Uri editLink, string etag)
3726
MaterializeAtom
results = null;
3830
private
MaterializeAtom
ReadPropertyFromAtom(EntityDescriptor box, ClientType.ClientProperty property)
3890
using (
MaterializeAtom
materializer = this.GetMaterializer(context, this.plan))
3940
return
MaterializeAtom
.CreateWrapper(results, continuation);
3954
private
MaterializeAtom
ReadPropertyFromRawData(ClientType.ClientProperty property)
4028
return
MaterializeAtom
.CreateWrapper(results);
5443
MaterializeAtom
materializer = DataServiceRequest.Materialize(this.Context, query.QueryComponents, null, contentType, batch.GetContentStream());
5469
qresponse = QueryOperationResponse.GetInstance(query.ElementType, contentHeaders, query,
MaterializeAtom
.EmptyResults);
5473
qresponse = QueryOperationResponse.GetInstance(query.ElementType, contentHeaders, query,
MaterializeAtom
.EmptyResults);
5581
using (
MaterializeAtom
atom = new MaterializeAtom(this.Context, reader, qc, null, mergeOption))
System\Data\Services\Client\DataServiceRequest.cs (5)
75
internal static
MaterializeAtom
Materialize(DataServiceContext context, QueryComponents queryComponents, ProjectionPlan plan, string contentType, Stream response)
96
return
MaterializeAtom
.EmptyResults;
138
QueryOperationResponse qor = new QueryOperationResponse<TElement>(new Dictionary<string, string>(ex.Response.Headers), ex.Response.Query,
MaterializeAtom
.EmptyResults);
167
QueryOperationResponse operationResponse = result.GetResponse<TElement>(
MaterializeAtom
.EmptyResults);
233
operationResponse = response.GetResponse<long>(
MaterializeAtom
.EmptyResults);
System\Data\Services\Client\MaterializeFromAtom.cs (3)
180
internal static
MaterializeAtom
EmptyResults
356
internal static
MaterializeAtom
CreateWrapper(IEnumerable results)
365
internal static
MaterializeAtom
CreateWrapper(IEnumerable results, DataServiceQueryContinuation continuation)
System\Data\Services\Client\QueryOperationResponseOfT.cs (1)
34
internal QueryOperationResponse(Dictionary<string, string> headers, DataServiceRequest query,
MaterializeAtom
results)
System\Data\Services\Client\QueryResponse.cs (4)
35
private readonly
MaterializeAtom
results;
45
internal QueryOperationResponse(Dictionary<string, string> headers, DataServiceRequest query,
MaterializeAtom
results)
76
internal
MaterializeAtom
Results
135
internal static QueryOperationResponse GetInstance(Type elementType, Dictionary<string, string> headers, DataServiceRequest query,
MaterializeAtom
results)
System\Data\Services\Client\QueryResult.cs (7)
140
QueryOperationResponse operationResponse = response.GetResponse<TElement>(
MaterializeAtom
.EmptyResults);
286
internal QueryOperationResponse<TElement> GetResponse<TElement>(
MaterializeAtom
results)
305
internal QueryOperationResponse GetResponseWithType(
MaterializeAtom
results, Type elementType)
324
internal
MaterializeAtom
GetMaterializer(DataServiceContext context, ProjectionPlan plan)
328
MaterializeAtom
materializer;
335
materializer =
MaterializeAtom
.EmptyResults;
350
MaterializeAtom
materializeAtom = DataServiceRequest.Materialize(context, this.ServiceRequest.QueryComponents, plan, this.ContentType, this.GetResponseStream());