对 WindowsIdentity 对象调用 Dispose()? C#
我通过调用检索 WindowsIdentity 对象:
win_id = System.Security.Principal.WindowsIdentity.GetCurrent();
目的是获取当前登录的用户名,效果很好。
WindowsIdentity 实现了 IDisposable,但是由于我自己没有创建该对象,因此当我完成它时是否仍然需要对其调用 .Dispose() ?
谢谢。
I am retrieving a WindowsIdentity object by calling:
win_id = System.Security.Principal.WindowsIdentity.GetCurrent();
with the intention of getting the currently logged on user name, which works fine.
WindowsIdentity implements IDisposable, but since I din't create the object myself, do I still need to call .Dispose() on it when I am finished with it or not?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WindowsIdentity.GetCurrent()
返回一个实例,因此您应该正确处置它。引用自 MSDN:
这里是关于此主题的另一篇好文章:
WindowsIdentity.GetCurrent()
returns an instance, so you should properly dispose it.Quote from MSDN:
And here is another nice article regarding this topic: