 | TypeReferenceResolveTypes Property |
Gets or sets a value indicating whether
TypeReference instances should resolve
the type specified by
TypeName if the type isn't already known.
Namespace: Ookii.JumboAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static bool ResolveTypes { get; set; }
Public Shared Property ResolveTypes As Boolean
Get
Set
public:
static property bool ResolveTypes {
bool get ();
void set (bool value);
}
static member ResolveTypes : bool with get, set
Property Value
Boolean if types should be resolved; otherwise,
.
The default value is
.
Remarks
The TypeReference class is used as part of the configuration for Jumbo Jet
jobs. The job server will load the configuration, but loading referenced assemblies into
the job server should be avoided. This property allows you to ensure that even if e.g. a
debugger executes the GetReferencedType method the type will not be loaded.
See Also