Skip to content

Commit

Permalink
Add virtual to properties
Browse files Browse the repository at this point in the history
  • Loading branch information
SaurabhMSFT committed Sep 9, 2024
1 parent 5d2d6fb commit a9bf919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class IdentityApplicationOptions
/// Gets or sets the 'client_id' (application ID) as it appears in the
/// application registration. This is the string representation of a GUID.
/// </summary>
public string? ClientId { get; set; }
public virtual string? ClientId { get; set; }

/// <summary>
/// Flag used to enable/disable logging of Personally Identifiable Information (PII).
Expand Down Expand Up @@ -84,7 +84,7 @@ public class IdentityApplicationOptions
/// See also https://aka.ms/ms-id-web-certificates.
/// ]]></format>
/// </example>
public IEnumerable<CredentialDescription>? ClientCredentials { get; set; }
public virtual IEnumerable<CredentialDescription>? ClientCredentials { get; set; }
#endregion Token acquisition

#region web API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class MicrosoftIdentityApplicationOptions : IdentityApplicationOptions
/// and school accounts. If your application is single tenant, set this property to the tenant ID or domain name.
/// If your application works only for Microsoft personal accounts, use "consumers".
/// </summary>
public string? TenantId { get; set; }
public virtual string? TenantId { get; set; }

/// <summary>
/// Gets or sets the Authority to use when making OpenIdConnect calls. By default the authority is computed
Expand All @@ -43,7 +43,7 @@ public override string? Authority
/// the app attempt to detect the Azure region automatically,
/// use "TryAutoDetect".
/// </summary>
public string? AzureRegion { get; set; }
public virtual string? AzureRegion { get; set; }

/// <summary>
/// Specifies the capabilities of the client (for instance {"cp1", "cp2"}). This is
Expand Down

0 comments on commit a9bf919

Please sign in to comment.