Show / Hide Table of Contents

Struct CredentialBoxResult

Contains information about the result of a dialog box that obtains credentials from the user.

Implements
IEquatable<CredentialBoxResult>
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.Equals(object, object)
object.GetType()
object.ReferenceEquals(object, object)
Namespace: TheXDS.MCART.Helpers
Assembly: MCART.Windows.dll
Syntax
[ExcludeFromCodeCoverage]
public readonly record struct CredentialBoxResult : IEquatable<CredentialBoxResult>

Constructors

| Edit this page View Source

CredentialBoxResult(string, SecureString, bool)

Contains information about the result of a dialog box that obtains credentials from the user.

Declaration
public CredentialBoxResult(string Username, SecureString Password, bool Save)
Parameters
Type Name Description
string Username

Username.

SecureString Password

Password.

bool Save

Indicates whether the user wants to store the supplied credentials.

Properties

| Edit this page View Source

Password

Password.

Declaration
public SecureString Password { get; init; }
Property Value
Type Description
SecureString
| Edit this page View Source

Save

Indicates whether the user wants to store the supplied credentials.

Declaration
public bool Save { get; init; }
Property Value
Type Description
bool
| Edit this page View Source

Username

Username.

Declaration
public string Username { get; init; }
Property Value
Type Description
string

Implements

IEquatable<T>

Extension Methods

Objects.ShallowCopyTo(object, object, Type)
ObjectExtensions.FieldsOf<T>(object)
ObjectExtensions.GetAttribute<T>(object)
ObjectExtensions.GetAttributes<T>(object)
ObjectExtensions.HasAttrValue<TAttribute, TValue>(object, out TValue)
ObjectExtensions.HasAttribute<T>(object)
ObjectExtensions.HasAttribute<T>(object, out T?)
ObjectExtensions.HasAttributes<T>(object, out IEnumerable<T>?)
ObjectExtensions.Is(object?, object?)
ObjectExtensions.IsEither(object, IEnumerable)
ObjectExtensions.IsEither(object, params object[])
ObjectExtensions.IsNeither(object, IEnumerable)
ObjectExtensions.IsNeither(object, params object[])
ObjectExtensions.IsNot(object?, object?)
ObjectExtensions.PropertiesOf<T>(object)
ObjectExtensions.WhichAre(object, IEnumerable<object>)
ObjectExtensions.WhichAre(object, params object[])
Objects.Itself<T>(T)
Objects.ShallowClone<T>(T)
Objects.ShallowCopyTo<T>(T, T)
CollectionExtensions.PushInto<TItem, TCollection>(TItem, ICollection<TCollection>)
DictionaryExtensions.PushInto<TKey, TValue>(TValue, TKey, IDictionary<TKey, TValue>)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX