Beispiel #1
0
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public override void Accept(IYamlVisitor visitor)
 {
     visitor.Visit(this);
 }
Beispiel #2
0
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public abstract void Accept(IYamlVisitor visitor);
Beispiel #3
0
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public void Accept(IYamlVisitor visitor)
 {
     visitor.Visit(this);
 }
Beispiel #4
0
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public override void Accept(IYamlVisitor visitor)
 {
     throw new NotSupportedException("A YamlAliasNode is an implementation detail and should never be visited.");
 }
Beispiel #5
0
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public abstract void Accept(IYamlVisitor visitor);
		/// <summary>
		/// Accepts the specified visitor by calling the appropriate Visit method on it.
		/// </summary>
		/// <param name="visitor">
		/// A <see cref="IYamlVisitor"/>.
		/// </param>
		public override void Accept(IYamlVisitor visitor) {
			visitor.Visit(this);
		}
Beispiel #7
0
		/// <summary>
		/// Accepts the specified visitor by calling the appropriate Visit method on it.
		/// </summary>
		/// <param name="visitor">
		/// A <see cref="IYamlVisitor"/>.
		/// </param>
		public override void Accept(IYamlVisitor visitor)
		{
			throw new NotSupportedException("A YamlAliasNode is an implementation detail and should never be visited.");
		}
 /// <summary>
 /// Accepts the specified visitor by calling the appropriate Visit method on it.
 /// </summary>
 /// <param name="visitor">
 /// A <see cref="IYamlVisitor"/>.
 /// </param>
 public void Accept(IYamlVisitor visitor)
 {
     visitor.Visit(this);
 }