2 instantiations of AtomParser
System.Data.Services.Client (2)
System\Data\Services\Client\AtomParser.cs (1)
669
AtomParser nested = new
AtomParser
(nestedReader, this.entryCallback, this.typeScheme, this.currentDataNamespace);
System\Data\Services\Client\MaterializeFromAtom.cs (1)
123
this.parser = new
AtomParser
(this.reader, AtomParser.XElementBuilderCallback, typeScheme, context.DataNamespace);
10 references to AtomParser
System.Data.Services.Client (10)
System\Data\Services\Client\AtomMaterializer.cs (5)
179
/// Use this class to materialize objects provided from an <see cref="
AtomParser
"/>.
213
/// <see cref="
AtomParser
"/> from which content will be read.
215
private readonly
AtomParser
parser;
235
/// <param name="parser"><see cref="
AtomParser
"/> from which content will be read.</param>
250
AtomParser
parser,
System\Data\Services\Client\AtomParser.cs (3)
87
/// <summary>Initializes a new <see cref="
AtomParser
"/> instance.</summary>
561
if (
AtomParser
.IsAllowedContentType(propertyValue))
669
AtomParser
nested = new AtomParser(nestedReader, this.entryCallback, this.typeScheme, this.currentDataNamespace);
System\Data\Services\Client\MaterializeFromAtom.cs (2)
64
private readonly
AtomParser
parser;
123
this.parser = new AtomParser(this.reader,
AtomParser
.XElementBuilderCallback, typeScheme, context.DataNamespace);