| File: System\DirectoryServices\AccountManagement\IdentityReference.cs | Web Access |
| Project: src\runtime\src\libraries\System.DirectoryServices.AccountManagement\src\System.DirectoryServices.AccountManagement.csproj (System.DirectoryServices.AccountManagement) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; namespace System.DirectoryServices.AccountManagement { internal sealed class IdentityReference { public string UrnValue { get { return _urnValue; } set { _urnValue = value; } } public string UrnScheme { get { return _urnScheme; } set { _urnScheme = value; } } private string _urnValue; private string _urnScheme; public IdentityReference() { // Do nothing } } }