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.
我有一个托管在 IIS 上的 WCF 服务,我正在通过 wcf servcie 在服务器上编写一个文件,我只是想确保使用什么凭据来访问这些服务。
如何查看正在使用的帐户?
结果将取决于您如何保护 WCF 服务、匿名、Windows 集成、基本、您是否使用模拟等。
通常,尽管您可以使用以下内容检查当前进程的身份:
编辑:返回帐户的简单 WCF 方法
public string GetUserName() { return System.Security.Principal.WindowsIdentity.GetCurrent().Name; }