Class MovePlayedInfo
Callback information provided by OnMovePlayed
Inheritance
System.Object
MovePlayedInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: PonzianiComponents
Assembly: PonzianiComponents.dll
Syntax
public class MovePlayedInfo
Properties
| Improve this Doc View SourceBoardId
Id of the board, where the move was played (needed in multiboard scenarios)
Declaration
public string BoardId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Move
The move which was played
Declaration
public Move Move { get; set; }
Property Value
Type | Description |
---|---|
Move |
NewFen
Position after the move in Forsyth-Edwards-Notation
Declaration
public string NewFen { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OldFen
Position before the move in Forsyth-Edwards-Notation
Declaration
public string OldFen { get; set; }
Property Value
Type | Description |
---|---|
System.String |
San
Move in SAN ( Standard Algebraic Notation)
Declaration
public string San { get; set; }
Property Value
Type | Description |
---|---|
System.String |