List of IDs of serials which are blacklisted. For a blacklisted serial method IsValid() will always return false.


Namespace: SeriousBit.Ellipter
Assembly: SeriousBit.Ellipter (in SeriousBit.Ellipter.dll)

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Behavior"), _
DescriptionAttribute("List of IDs of serials which are blacklisted. For a blacklisted serial method IsValid() will always return false."), _
DefaultValueAttribute("null")>

Public Property BlackList As Long()
C#
[CategoryAttribute("Behavior")]
[DescriptionAttribute("List of IDs of serials which are blacklisted. For a blacklisted serial method IsValid() will always return false.")]
[DefaultValueAttribute("null")]
public long[] BlackList { get; set; }
C++
[CategoryAttribute(L"Behavior")]
[DescriptionAttribute(L"List of IDs of serials which are blacklisted. For a blacklisted serial method IsValid() will always return false.")]
[DefaultValueAttribute(L"null")]
public property long[] BlackList sealed {
array<__int64>^ get();
void set(array<__int64>^ value);
}
J#
/** @attribute CategoryAttribute("Behavior") */
/** @attribute DescriptionAttribute("List of IDs of serials which are blacklisted. For a blacklisted serial method IsValid() will always return false.") */
/** @attribute DefaultValueAttribute("null") */
/** property */
public long[] get_BlackList();

/** property */
public void set_BlackList(long[] value);
JScript
public function get BlackList() : long[]

public function set BlackList(value : long[]);

See Also