CK.Core.JSONVisitor.Parent.Parent C# (CSharp) Method

Parent() public method

Initializes a new parent object.
public Parent ( string propertyName, int index ) : System
propertyName string Name of the property. Null for an array entry.
index int Index of the property or index in an array.
return System
            public Parent( string propertyName, int index )
            {
                PropertyName = propertyName;
                Index = index;
            }
JSONVisitor.Parent