// // System.Data.ParameterDirection.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Specifies the type of a parameter within a query relative to the DataSet. /// public enum ParameterDirection { Input, InputOutput, Output, ReturnValue } }