3 instantiations of ChapterHandle
System.Data (3)
fx\src\data\System\Data\OleDb\SafeHandles.cs (3)
113internal static readonly ChapterHandle DB_NULL_HCHAPTER = new ChapterHandle(IntPtr.Zero); 120return new ChapterHandle(chapteredRowset, binding, valueOffset); 128return new ChapterHandle(chapter);
20 references to ChapterHandle
System.Data (20)
fx\src\data\System\Data\OleDb\OleDbCommand.cs (1)
623dataReader.InitializeIRowset(executeResult, ChapterHandle.DB_NULL_HCHAPTER, _recordsAffected);
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (1)
595dataReader.InitializeIRowset(rowset, ChapterHandle.DB_NULL_HCHAPTER, IntPtr.Zero);
fx\src\data\System\Data\OleDb\OleDbDataAdapter.cs (2)
364ChapterHandle chapterHandle = ChapterHandle.CreateChapterHandle(chapter);
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (10)
45private ChapterHandle _chapterHandle = ChapterHandle.DB_NULL_HCHAPTER; 109internal void InitializeIRowset(object result, ChapterHandle chapterHandle, IntPtr recordsAffected) { 111if ((null == _connection) || (ChapterHandle.DB_NULL_HCHAPTER != chapterHandle)) { // MDAC 59629 733ChapterHandle chapter = _chapterHandle; 734_chapterHandle = ChapterHandle.DB_NULL_HCHAPTER; 736if (ChapterHandle.DB_NULL_HCHAPTER != chapter) { // MDAC 81441 881ChapterHandle chapterHandle = ChapterHandle.CreateChapterHandle(result, rowbinding, valueOffset); 2014dataReader.InitializeIRowset(rowset, ChapterHandle.DB_NULL_HCHAPTER, IntPtr.Zero);
fx\src\data\System\Data\OleDb\OleDbEnumerator.cs (1)
72dataReader.InitializeIRowset(value, ChapterHandle.DB_NULL_HCHAPTER, ADP.RecordsUnaffected);
fx\src\data\System\Data\OleDb\SafeHandles.cs (5)
113internal static readonly ChapterHandle DB_NULL_HCHAPTER = new ChapterHandle(IntPtr.Zero); 116internal static ChapterHandle CreateChapterHandle(object chapteredRowset, RowBinding binding, int valueOffset) { 118return ChapterHandle.DB_NULL_HCHAPTER; 124internal static ChapterHandle CreateChapterHandle(IntPtr chapter) { 126return ChapterHandle.DB_NULL_HCHAPTER;