Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Merge | Netfx SMI Classes#3326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
benrr101 merged 12 commits intomainfromdev/russellben/merge/netfx-smi
May 12, 2025
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
12 commits
Select commitHold shift + click to select a range
6164633
Move SmiConnection.cs to SmiConnection.netfx.cs in common project
benrr101May 1, 2025
c4a56fd
Move SmiContext.cs to SmiContext.netfx.cs in common project
benrr101May 1, 2025
452c62f
Move SmiContextFactory.cs to SmiContextFactory.netfx.cs in common pro…
benrr101May 1, 2025
8fe773c
Moving SmiEventSink_DeferedProcessing.cs to SmiEventSink_DeferredProc…
benrr101May 1, 2025
ea7b6e1
Move SmiEventStream.cs to SmiEventStream.netfx.cs, make dispose obsolete
benrr101May 1, 2025
7bec40f
Moving SmiExecuteType.cs to SmiExecuteType.netfx.cs in common project
benrr101May 1, 2025
aca62b9
Move SmiLink.cs to SmiLink.netfx.cs in common project
benrr101May 1, 2025
cde28dc
Moving SmiRequestExecutor.cs to SmiRequestExecutor.netfx.cs in common…
benrr101May 1, 2025
09653f3
Moving SmiStream.cs to SmiStream.netfx.cs in common project
benrr101May 1, 2025
9e104ee
Merge SmiXetterAccessMap.cs into SmiXetterAccessMap.Common.cs and ren…
benrr101May 2, 2025
b46660e
Merge EMDEventType into TriggerAction, move TriggerAction.cs to Trigg…
benrr101May 2, 2025
1b1ca6c
Patch up changes so they all build
benrr101May 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Moving SmiEventSink_DeferedProcessing.cs to SmiEventSink_DeferredProc…
…essing.netfx.cs
  • Loading branch information
@benrr101
benrr101 committedMay 1, 2025
commit8fe773c34b51a45af7fcef3f930520220991c680
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -537,6 +537,9 @@
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\Server\SmiEventSink_Default.netfx.cs">
<Link>Microsoft\Data\SqlClient\Server\SmiEventSink_Default.netfx.cs</Link>
</Compile>
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\Server\SmiEventSink_DeferredProcessing.netfx.cs">
<Link>Microsoft\Data\SqlClient\Server\SmiEventSink_DeferredProcessing.netfx.cs</Link>
</Compile>
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\Server\SmiGettersStream.cs">
<Link>Microsoft\Data\SqlClient\Server\SmiGettersStream.cs</Link>
</Compile>
Expand DownExpand Up@@ -902,8 +905,6 @@
<Compile Include="Common\Microsoft\Data\Common\NameValuePermission.cs" />
<Compile Include="Microsoft\Data\Common\DbConnectionOptions.cs" />
<Compile Include="Microsoft\Data\Common\DbConnectionString.cs" />
<Compile Include="Microsoft\Data\SqlClient\Server\SmiEventSink_DeferedProcessing.cs" />
<Compile Include="Microsoft\Data\SqlClient\Server\SmiEventStream.cs" />
<Compile Include="Microsoft\Data\SqlClient\Server\SmiExecuteType.cs" />
<Compile Include="Microsoft\Data\SqlClient\Server\SmiLink.cs" />
<Compile Include="Microsoft\Data\SqlClient\Server\SmiRequestExecutor.cs" />
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,9 +2,10 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#if NETFRAMEWORK

namespace Microsoft.Data.SqlClient.Server
{

// This class exists purely to defer processing of messages until a later time.
// It is designed to allow calling common code that interacts with the SMI layers
// without throwing or otherwise processing messages in the sink until later on.
Expand All@@ -23,9 +24,9 @@ namespace Microsoft.Data.SqlClient.Server
//
// IMPORTANT: Code that uses the DeferedProccess event sink is responsible for ensuring that
// these messages ARE processed at some point.
internal classSmiEventSink_DeferedProcessing : SmiEventSink_Default
internal classSmiEventSink_DeferredProcessing : SmiEventSink_Default
{
internalSmiEventSink_DeferedProcessing(SmiEventSink parent) : base(parent)
internalSmiEventSink_DeferredProcessing(SmiEventSink parent) : base(parent)
{
}

Expand All@@ -37,3 +38,4 @@ protected override void DispatchMessages(bool ignoreNonFatalMessages)
}
}

#endif

[8]ページ先頭

©2009-2025 Movatter.jp