namespace Lithnet.CredentialProvider { /// /// An object that represents a response to LogonUI/CredUI that includes serialized credentials, or the result of the attempt to obtain them. /// public class NativeSerializationResponse { /// /// Gets or sets the final HRESULT of the serialization operation /// public int HResult { get; set; } /// /// Gets or sets the status result of the serialization operation /// public SerializationResponse SerializationResponse { get; set; } /// /// Gets or sets the serialzied credential blob /// public CredentialSerialization SerializedCredentials { get; set; } /// /// Gets or sets the optional status text to display to the user /// public string OptionalStatusText { get; set; } /// /// Gets or sets the optional status icon to display to the user /// public StatusIcon OptionalStatusIcon { get; set; } } }