MissingMemberMessage

ReportBuilderOptions.MissingMemberMessage property

Gets or sets a string value printed instead of a template expression that represents a plain reference to a missing member of an object. The default value is an empty string.

public string MissingMemberMessage { get; set; }

Remarks

The property should be used in conjunction with the AllowMissingMembers option. Otherwise, an exception is thrown when a missing member of an object is encountered.

The property affects only printing of a template expression representing a plain reference to a missing object member. For example, printing of a binary operator, one of which operands references a missing object member, is not affected.

The value of this property cannot be set to null.

See Also