Home
last modified time | relevance | path

Searched refs:_fillLoadOption (Results 1 – 2 of 2) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/Common/
H A DDataAdapter.cs23 private LoadOption _fillLoadOption; field in System.Data.Common.DataAdapter
83 return (0 == _fillLoadOption); in ShouldSerializeAcceptChangesDuringFill()
105 LoadOption fillLoadOption = _fillLoadOption;
106 return ((0 != fillLoadOption) ? _fillLoadOption : LoadOption.OverwriteChanges);
116 _fillLoadOption = value;
127 _fillLoadOption = 0; in ResetFillLoadOption()
131 public virtual bool ShouldSerializeFillLoadOption() => 0 != _fillLoadOption; in ShouldSerializeFillLoadOption()
234 _fillLoadOption = from._fillLoadOption; in CloneFrom()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A DDataAdapter.cs30 private LoadOption _fillLoadOption; field in System.Data.Common.DataAdapter
89 return (0 == _fillLoadOption); in ShouldSerializeAcceptChangesDuringFill()
132 LoadOption fillLoadOption = _fillLoadOption;
133 return ((0 != fillLoadOption) ? _fillLoadOption : LoadOption.OverwriteChanges);
141 _fillLoadOption = value;
154 _fillLoadOption = 0; in ResetFillLoadOption()
161 return (0 != _fillLoadOption); in ShouldSerializeFillLoadOption()
297 _fillLoadOption = from._fillLoadOption; in CloneFrom()