/// <summary>
 /// Initializes a new instance of the ArrayPropertyValueError class.
 /// </summary>
 public ArrayPropertyValueError(ArrayProperty property, string code, string message)
 {
     Property = property;
     Code     = code;
     Message  = message;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the ArrayProperty class.
 /// </summary>
 public ArrayProperty(string name, ArrayProperty property = default(ArrayProperty), int?index = default(int?))
 {
     Property = property;
     Name     = name;
     Index    = index;
 }