22 lines
594 B
C#
22 lines
594 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ParameterDirection.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">markash</owner>
|
||
|
// <owner current="true" primary="false">laled</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Data {
|
||
|
|
||
|
public enum ParameterDirection {
|
||
|
|
||
|
Input = 1,
|
||
|
|
||
|
Output = 2,
|
||
|
|
||
|
InputOutput = 3,
|
||
|
|
||
|
ReturnValue = 6
|
||
|
}
|
||
|
}
|