//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // markash // laled //------------------------------------------------------------------------------ namespace System.Data { public enum ParameterDirection { Input = 1, Output = 2, InputOutput = 3, ReturnValue = 6 } }