File: compmod\system\componentmodel\DataObjectMethodType.cs
Project: ndp\fx\src\System.csproj (System)
//------------------------------------------------------------------------------
// <copyright file="DataObjectMethodType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.ComponentModel {
 
    using System;
 
    public enum DataObjectMethodType {
 
        Fill = 0,
 
        Select = 1,
 
        Update = 2,
 
        Insert = 3,
 
        Delete = 4
    }
}