当前位置: 首页>>代码示例>>C#>>正文


C# TdsParserStateObject.IncrementAndObtainOpenResultCount方法代码示例

本文整理汇总了C#中System.Data.SqlClient.TdsParserStateObject.IncrementAndObtainOpenResultCount方法的典型用法代码示例。如果您正苦于以下问题:C# TdsParserStateObject.IncrementAndObtainOpenResultCount方法的具体用法?C# TdsParserStateObject.IncrementAndObtainOpenResultCount怎么用?C# TdsParserStateObject.IncrementAndObtainOpenResultCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Data.SqlClient.TdsParserStateObject的用法示例。


在下文中一共展示了TdsParserStateObject.IncrementAndObtainOpenResultCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteMarsHeaderData

        // Write mars header data, not including the mars header length
        private void WriteMarsHeaderData(TdsParserStateObject stateObj, SqlInternalTransaction transaction)
        {
            // Function to send over additional payload header data for Yukon and beyond only.

            // These are not necessary - can have local started in distributed.
            // Debug.Assert(!(null != sqlTransaction && null != distributedTransaction), "Error to have local (api started) and distributed transaction at the same time!");
            // Debug.Assert(!(null != _userStartedLocalTransaction && null != distributedTransaction), "Error to have local (started outside of the api) and distributed transaction at the same time!");

            // We may need to update the mars header length if mars header is changed in the future

            WriteShort(TdsEnums.HEADERTYPE_MARS, stateObj);

            if (null != transaction && SqlInternalTransaction.NullTransactionId != transaction.TransactionId)
            {
                WriteLong(transaction.TransactionId, stateObj);
                WriteInt(stateObj.IncrementAndObtainOpenResultCount(transaction), stateObj);
            }
            else
            {
                WriteLong(SqlInternalTransaction.NullTransactionId, stateObj);
                WriteInt(stateObj.IncrementAndObtainOpenResultCount(null), stateObj);
            }
        }
开发者ID:nnyamhon,项目名称:corefx,代码行数:24,代码来源:TdsParser.cs

示例2: WriteMarsHeader

 private void WriteMarsHeader(TdsParserStateObject stateObj, SqlInternalTransaction transaction)
 {
     this.WriteUnsignedInt(0x16, stateObj);
     this.WriteUnsignedInt(0x12, stateObj);
     this.WriteShort(2, stateObj);
     if ((transaction != null) && (0L != transaction.TransactionId))
     {
         this.WriteLong(transaction.TransactionId, stateObj);
         this.WriteInt(stateObj.IncrementAndObtainOpenResultCount(transaction), stateObj);
     }
     else
     {
         this.WriteLong(this._retainedTransactionId, stateObj);
         this.WriteInt(stateObj.IncrementAndObtainOpenResultCount(null), stateObj);
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:16,代码来源:TdsParser.cs


注:本文中的System.Data.SqlClient.TdsParserStateObject.IncrementAndObtainOpenResultCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。