17 references to EntryFlags
System.Data.Services.Client (17)
System\Data\Services\Client\AtomEntry.cs (17)
41
private
EntryFlags
flags;
80
return this.GetFlagValue(
EntryFlags
.MediaLinkEntryAssigned) ? (bool?)this.GetFlagValue(
EntryFlags
.MediaLinkEntryValue) : null;
86
this.SetFlagValue(
EntryFlags
.MediaLinkEntryAssigned, true);
87
this.SetFlagValue(
EntryFlags
.MediaLinkEntryValue, value.Value);
150
get { return this.GetFlagValue(
EntryFlags
.IsNull); }
151
set { this.SetFlagValue(
EntryFlags
.IsNull, value); }
192
get { return this.GetFlagValue(
EntryFlags
.ShouldUpdateFromPayload); }
193
set { this.SetFlagValue(
EntryFlags
.ShouldUpdateFromPayload, value); }
199
get { return this.GetFlagValue(
EntryFlags
.CreatedByMaterializer); }
200
set { this.SetFlagValue(
EntryFlags
.CreatedByMaterializer, value); }
206
get { return this.GetFlagValue(
EntryFlags
.EntityHasBeenResolved); }
207
set { this.SetFlagValue(
EntryFlags
.EntityHasBeenResolved, value); }
213
get { return this.GetFlagValue(
EntryFlags
.EntityPropertyMappingsApplied); }
214
set { this.SetFlagValue(
EntryFlags
.EntityPropertyMappingsApplied, value); }
224
private bool GetFlagValue(
EntryFlags
mask)
232
private void SetFlagValue(
EntryFlags
mask, bool value)