Show / Hide Table of Contents

Struct InputComments

Struct representing the input data for a custom comment combiner operation.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Nett
Assembly: Nett.dll
Syntax
public struct InputComments
Remarks

Used as the input argument for a custom comment handler func for IncludingComments(Func<InputComments, IEnumerable<TomlComment>>)

Properties

| Improve this Doc View Source

SourceComments

Gets the comment of the source table for the row being processed. Will be and empty collection for rows that do not exist in the source table.

Declaration
public IEnumerable<TomlComment> SourceComments { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<TomlComment>
| Improve this Doc View Source

TargetComments

Gets the comments of the target table for the row being processed. Will be an empty collection for rows that do not exist in the target table.

Declaration
public IEnumerable<TomlComment> TargetComments { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<TomlComment>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX