Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
netTcpBinding を使用して自己ホスト型の WCF サービスを使用しています。サービスを呼び出しているクライアントのドメイン ユーザー名にアクセスするために使用できるクラスはありますか。で調べてみましたOperationContextがわかりませんでした。ありがとう
OperationContext
これを試して:
ServiceSecurityContext serviceSecurityContext = ServiceSecurityContext.Current; if (serviceSecurityContext != null) { string accountText = serviceSecurityContext.WindowsIdentity.Name; }
WindowsIdentity プロパティには、ユーザーに関する多くの情報が含まれています。