| 123456789101112131415161718192021 |
- //------------------------------------------------------------------------------
- // <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
- }
- }
|