Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the Expression class.
 /// </summary>
 public Expression(string text = default(string), object value = default(object), IList <Expression> subexpressions = default(IList <Expression>), AzureResourceErrorInfo error = default(AzureResourceErrorInfo))
 {
     Text           = text;
     Value          = value;
     Subexpressions = subexpressions;
     Error          = error;
     CustomInit();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the ExpressionRoot class.
 /// </summary>
 /// <param name="path">The path.</param>
 public ExpressionRoot(string text = default(string), object value = default(object), IList <Expression> subexpressions = default(IList <Expression>), AzureResourceErrorInfo error = default(AzureResourceErrorInfo), string path = default(string))
     : base(text, value, subexpressions, error)
 {
     Path = path;
     CustomInit();
 }