Click or drag to resize

UtilMarshalHelperGetActiveObject Method

Obtains a running instance of the specified object from the running object table (ROT).

Namespace: QsInformatica.Utils
Assembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 27.1.0
Syntax
public static Object GetActiveObject(
	string progId,
	bool throwOnError = false
)

Parameters

progId  String
The programmatic identifier (ProgID) of the object that was requested.
throwOnError  Boolean  (Optional)

[Missing <param name="throwOnError"/> documentation for "M:QsInformatica.Utils.Util.MarshalHelper.GetActiveObject(System.String,System.Boolean)"]

Return Value

Object
The object that was requested; otherwise null.
Exceptions
ExceptionCondition
ArgumentNullException
Remarks
Implementation of [Marshal.GetActiveObject](https://learn.microsoft.com/it-it/dotnet/api/system.runtime.interopservices.marshal.getactiveobject?view=netframework-4.8#system-runtime-interopservices-marshal-getactiveobject(system-string)) that works for .NET core 3.1+ on Windows. Source: https://stackoverflow.com/a/64826127
See Also