Click or drag to resize

ConcurrentScriptCompilerResultDictionaryTryGetValue(String, IScriptCompilerResult) Method

Tries to get a compilation result, by providing the hash of the script texts.

Namespace: Altaxo.Main.Services.ScriptCompilation
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool TryGetValue(
	string scriptTextHash,
	out IScriptCompilerResult result
)

Parameters

scriptTextHash  String
The script text hash.
result  IScriptCompilerResult
Returns the compilation result. This can be either a successful result or an unsuccessful result.

Return Value

Boolean
True if the compilation result corresponding to the script text hash could be found; otherwise, false.
See Also