在 .NET Web 应用程序中获取登录用户的 UPN 或电子邮件

8

本文介绍了在 .NET Web 应用程序中获取登录用户的 UPN 或电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我不是 .NET 开发人员,我觉得这对于以下人员来说是微不足道的:

我有一个 C# web 应用程序,它使用户使用登录用户的用户凭据.目前它使用来自

的 SID

System.Security.Principal.WindowsIdentity.GetCurrent().User.Value

我需要获取用户 UPN 登录名或电子邮件地址(在活动目录中定义)而不是 SID.GetCurrent() 返回一个类型为 WindowsIdentity 的对象;查看 WindowsIdentity 成员的详细信息:

MSDN:WindowsIdentity 成员

我看不到任何看起来会给我 UPN 或电子邮件的内容.我如何提取要使用的信息,或者通过将 SID 提供给其他一些函数,或者首先调用不同的东西.

解决方案

同时 (.NET 3.5) 这是一个单行:

System.DirectoryServices.AccountManagement.UserPrincipal.Current.EmailAddress

用于电子邮件,或

System.DirectoryServices.AccountManagement.UserPrincipal.Current.UserPrincipalName

用于 UPN.

I'm not a .NET developer, and I have a feeling this would be trivial for someone who is:

I have a C# web application that makes user of the user credentials of the logged in user. Currently it uses the SID which comes from

System.Security.Principal.WindowsIdentity.GetCurrent().User.Value 

I need to get either the users UPN login or email address (as defined in active directory) instead of the SID. GetCurrent() returns an object of type WindowsIdentity; looking in the details for WindowsIdentity Members:

MSDN: WindowsIdentity Members

I can't see anything that looks like it would give me either the UPN or email in there. How can I pull up that information to use, either by feeding the SID into some other function or calling something different in the first place.

解决方案

Meanwhile (.NET 3.5) this is a one-liner:

System.DirectoryServices.AccountManagement.UserPrincipal.Current.EmailAddress

for the email, or

System.DirectoryServices.AccountManagement.UserPrincipal.Current.UserPrincipalName

for the UPN.

这篇关于在 .NET Web 应用程序中获取登录用户的 UPN 或电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14