validateGetAggrLevel

Specifies nesting level of aggregation or 0.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "validateGetAggrLevel")]
public static extern ValidationIssueLevel x86_validateGetAggrLevel(Int32 issue);

[DllImport(enginedll, EntryPoint = "validateGetAggrLevel")]
public static extern ValidationIssueLevel x64_validateGetAggrLevel(Int64 issue);

public static ValidationIssueLevel validateGetAggrLevel(Int64 issue)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_validateGetAggrLevel((Int32)issue);
				return _result;
			}
			else
			{
				return x64_validateGetAggrLevel(issue);
			}
		}    

Property issue

Size: 64 bit / 8 byte (reference)
???.