2 writes to Entry
System.Data.Services.Client (2)
System\Data\Services\Client\AtomParser.cs (2)
724property.Entry = new AtomEntry(); 731property.Entry = propertyValue as AtomEntry;
26 references to Entry
System.Data.Services.Client (26)
System\Data\Services\Client\AtomContentProperty.cs (1)
73/// in the <see cref="Entry"/> value.
System\Data\Services\Client\AtomMaterializer.cs (24)
523atomProperty.Entry != null, 527result = atomProperty.Entry.IsNull; 530properties = atomProperty.Entry.DataValues; 531entry = atomProperty.Entry; 572if (atomProperty.Entry != null) 574entry = atomProperty.Entry; 611if (property.Entry == null) 616CheckEntryToAccessNotNull(property.Entry, name); 618return property.Entry; 789else if (atomProperty.Entry != null) 794if (segmentIsLeaf && !atomProperty.Entry.EntityHasBeenResolved && !atomProperty.IsNull) 796materializer.Materialize(atomProperty.Entry, property.PropertyType, /* includeLinks */ false); 799properties = atomProperty.Entry.DataValues; 800result = atomProperty.Entry.ResolvedObject; 801entry = atomProperty.Entry; 917if (property.IsKnownType && (atomProperty.Feed != null || atomProperty.Entry != null)) 927if (atomProperty.Entry != null && property.CollectionType != null) 1280if (atomProperty.Feed == null && atomProperty.Entry == null) 1933if (entry.ShouldUpdateFromPayload == false && e.Entry == null && e.Feed == null) 1939if (!includeLinks && (e.Entry != null || e.Feed != null)) 1952else if (e.Entry != null) 1957this.Materialize(e.Entry, prop.PropertyType, includeLinks); 1962prop.SetValue(entry.ResolvedObject, e.Entry.ResolvedObject, e.Name, true /* allowAdd? */); 1963this.log.SetLink(entry, prop.PropertyName, e.Entry.ResolvedObject);
System\Data\Services\Client\AtomParser.cs (1)
725property.Entry.IsNull = true;