System.Data.Common.ADP.InvalidOperation(string)

Here are the examples of the csharp api class System.Data.Common.ADP.InvalidOperation(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

1. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static internal InvalidOperationException DataAdapter(string error) {
            return InvalidOperation(error);
        }

2. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static private InvalidOperationException Provider(string error) {
            return InvalidOperation(error);
        }

3. Example

Project: referencesource
Source File: AdapterUtil.cs
View license
static private InvalidOperationException DataMapping(string error) {
            return InvalidOperation(error);
        }