我想将应用程序池标识帐户的凭据传递给应用程序中的WCF服务,我可以使用
获取应用程序池标识的凭据var identitipoolAccountCred = System.Security.Principal.WindowsIdentity.GetCurrent();
我希望将这些凭据(System.Security.principal.WindowsIdentity
)转换为类型网络凭据类型(System.Net.NetworkCredential
)以传递WCF渠道工厂。
那么如何在C#中将Windows身份转换为网络凭证?