Click or drag to resize

ContextProcessUnknownTag Method

When overridden, tries to process a tag that cannot be processed by the GEDCOM mechanism, because the tag is unknown or encountered in an unexpected context.

Namespace: Patagames.GedcomNetSdk.Primitives
Assembly: Patagames.Gedcom.Net.Sdk (in Patagames.Gedcom.Net.Sdk.dll) Version: 1.0.8
Syntax
protected virtual ProcessTagResult ProcessUnknownTag(
	int no,
	string tagPath,
	int level,
	string tag,
	string value,
	out Context context
)

Parameters

no  Int32
The number of the line in the GEDCOM transmission file.
tagPath  String
The parent tag of the tag being processed.
level  Int32
The nesting level of the processed tag.
tag  String
Tag to be processed.
value  String
The value contained under the tag being processed.
context  Context
Context for replacement. Must not be null if ReplaceContext is returned.

Return Value

ProcessTagResult
The default implementation always returns Error, and the GEDCOM engine throws an UnknownTagException.
See Also