System.Data.DataTable.UpdatingCurrent C# (CSharp) 메소드

UpdatingCurrent() 개인적인 메소드

private UpdatingCurrent ( DataRow row, DataRowAction action ) : bool
row DataRow
action DataRowAction
리턴 bool
        internal bool UpdatingCurrent(DataRow row, DataRowAction action)
        {
            return (action == DataRowAction.Add || action == DataRowAction.Change ||
                   action == DataRowAction.Rollback || action == DataRowAction.ChangeOriginal ||
                   action == DataRowAction.ChangeCurrentAndOriginal);
        }
DataTable