|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- # GrammarUnknownEscapeCharacter
-
- Namespace: LLama.Exceptions
-
- An unexpected character was encountered after an escape sequence
-
- ```csharp
- public class GrammarUnknownEscapeCharacter : GrammarFormatException, System.Runtime.Serialization.ISerializable
- ```
-
- Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [Exception](https://docs.microsoft.com/en-us/dotnet/api/system.exception) → [GrammarFormatException](./llama.exceptions.grammarformatexception.md) → [GrammarUnknownEscapeCharacter](./llama.exceptions.grammarunknownescapecharacter.md)<br>
- Implements [ISerializable](https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.iserializable)
-
- ## Properties
-
- ### **TargetSite**
-
- ```csharp
- public MethodBase TargetSite { get; }
- ```
-
- #### Property Value
-
- [MethodBase](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.methodbase)<br>
-
- ### **Message**
-
- ```csharp
- public string Message { get; }
- ```
-
- #### Property Value
-
- [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
-
- ### **Data**
-
- ```csharp
- public IDictionary Data { get; }
- ```
-
- #### Property Value
-
- [IDictionary](https://docs.microsoft.com/en-us/dotnet/api/system.collections.idictionary)<br>
-
- ### **InnerException**
-
- ```csharp
- public Exception InnerException { get; }
- ```
-
- #### Property Value
-
- [Exception](https://docs.microsoft.com/en-us/dotnet/api/system.exception)<br>
-
- ### **HelpLink**
-
- ```csharp
- public string HelpLink { get; set; }
- ```
-
- #### Property Value
-
- [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
-
- ### **Source**
-
- ```csharp
- public string Source { get; set; }
- ```
-
- #### Property Value
-
- [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
-
- ### **HResult**
-
- ```csharp
- public int HResult { get; set; }
- ```
-
- #### Property Value
-
- [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
-
- ### **StackTrace**
-
- ```csharp
- public string StackTrace { get; }
- ```
-
- #### Property Value
-
- [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
|