blob: 104df15e8273eb6146a02aff6d46b1972ca4764e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//-----------------------------------------------------------------------
// <copyright file="TokenProcessingErrorEventArgs.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.InfoCard {
using System;
using System.Diagnostics.CodeAnalysis;
using Validation;
/// <summary>
/// Arguments for the <see cref="InfoCardSelector.TokenProcessingError"/> event.
/// </summary>
public class TokenProcessingErrorEventArgs : EventArgs {
/// <summary>
/// Initializes a new instance of the <see cref="TokenProcessingErrorEventArgs"/> class.
/// </summary>
/// <param name="tokenXml">The token XML.</param>
/// <param name="exception">The exception.</param>
internal TokenProcessingErrorEventArgs(string tokenXml, Exception exception) {
Requires.NotNull(tokenXml, "tokenXml");
Requires.NotNull(exception, "exception");
this.TokenXml = tokenXml;
this.Exception = exception;
}
/// <summary>
/// Gets the raw token XML.
/// </summary>
public string TokenXml { get; private set; }
/// <summary>
/// Gets the exception that was generated while processing the token.
/// </summary>
public Exception Exception { get; private set; }
#if CONTRACTS_FULL
/// <summary>
/// Verifies conditions that should be true for any valid state of this object.
/// </summary>
[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", Justification = "Called by code contracts.")]
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Justification = "Called by code contracts.")]
[ContractInvariantMethod]
private void ObjectInvariant() {
Contract.Invariant(this.TokenXml != null);
Contract.Invariant(this.Exception != null);
}
#endif
}
}
|