本文整理汇总了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);
}
}
示例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);
}
}