Update Reference Sources to .NET Framework 4.6
[mono.git] / mcs / class / referencesource / System.Data / System / Data / IDataAdapter.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="IDataAdapter.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">markash</owner>
6 // <owner current="true" primary="false">laled</owner>
7 //------------------------------------------------------------------------------
8
9 namespace System.Data {
10     using System;
11
12     public interface IDataAdapter {
13
14         MissingMappingAction MissingMappingAction {
15             get;
16             set;
17         }
18
19         MissingSchemaAction MissingSchemaAction {
20             get;
21             set;
22         }
23
24         ITableMappingCollection TableMappings {
25             get;
26         }
27
28         DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType);
29
30         int Fill(DataSet dataSet);
31
32         IDataParameter[] GetFillParameters();
33
34         int Update(DataSet dataSet);
35     }
36 }