Interface IErrorDataProvider
Namespace: ArtOfTest.Common.Design.Exceptions
Assembly: ArtOfTest.WebAii.Design.dll
Syntax
public interface IErrorDataProvider
Properties
Item[String]
Declaration
object this[string key] { get; set; }
Parameters
System.String
key
|
Property Value
System.Object
|
Keys
Declaration
IList<string> Keys { get; }
Property Value
System.Collections.Generic.IList<System.String>
|
Methods
Get(String)
Declaration
object Get(string key)
Parameters
System.String
key
|
Returns
System.Object
|
Get<T>(String)
Declaration
T Get<T>(string key)
Parameters
System.String
key
|
Returns
T
|
Type Parameters
T
|
Set(String, Object)
Declaration
void Set(string key, object value)
Parameters
System.String
key
|
System.Object
value
|