File: fx\src\data\Microsoft\SqlServer\Server\SmiExecuteType.cs
Project: ndp\System.Data.csproj (System.Data)
//------------------------------------------------------------------------------
// <copyright file="SmiExecuteType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">alazela</owner>
// <owner current="true" primary="false">stevesta</owner>
//------------------------------------------------------------------------------
 
namespace Microsoft.SqlServer.Server {
 
    using System;
    using System.Data;
    using System.Data.Sql;
 
    // enum representing the type of execution requested
    internal enum SmiExecuteType {
        NonQuery = 0,
        Reader = 1,
        ToPipe = 2,
    }
}