Class LateBinding
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.visualbasic.compilerservices.LateBinding
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class LateBinding extends NetObject
The base .NET class managing Microsoft.VisualBasic.CompilerServices.LateBinding, Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.VisualBasic.CompilerServices.LateBinding
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: Microsoft.VisualBasic.Corestatic java.lang.String
className
Qualified class name: Microsoft.VisualBasic.CompilerServices.LateBindingstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description LateBinding()
LateBinding(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LateBinding
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoLateBinding
, a cast assert is made to check if types are compatible.java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic void
LateCall(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean[] CopyBack)
static void
LateCall(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, JCORefOut dupParam5)
static NetObject
LateGet(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean[] CopyBack)
static NetObject
LateGet(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, JCORefOut dupParam5)
static NetObject
LateIndexGet(NetObject o, NetObject[] args, java.lang.String[] paramnames)
static NetObject
LateIndexGet(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2)
static void
LateIndexSet(NetObject o, NetObject[] args, java.lang.String[] paramnames)
static void
LateIndexSet(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2)
static void
LateIndexSetComplex(NetObject o, NetObject[] args, java.lang.String[] paramnames, boolean OptimisticSet, boolean RValueBase)
static void
LateIndexSetComplex(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2, boolean dupParam3, boolean dupParam4)
static void
LateSet(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames)
static void
LateSet(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4)
static void
LateSetComplex(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean OptimisticSet, boolean RValueBase)
static void
LateSetComplex(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, boolean dupParam5, boolean dupParam6)
void
setJCOInstance(JCObject instance)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: Microsoft.VisualBasic.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: Microsoft.VisualBasic.Core- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: Microsoft.VisualBasic.CompilerServices.LateBinding- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static LateBinding cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoLateBinding
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
LateBinding
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
LateGet
public static NetObject LateGet(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean[] CopyBack) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, MissingMethodException, InvalidCastException, RankException, ArrayTypeMismatchException, NullReferenceException, OverflowException, MissingMemberException, AmbiguousMatchException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
MissingMethodException
InvalidCastException
RankException
ArrayTypeMismatchException
NullReferenceException
OverflowException
MissingMemberException
AmbiguousMatchException
-
LateGet
public static NetObject LateGet(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, JCORefOut dupParam5) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, MissingMethodException, InvalidCastException, RankException, ArrayTypeMismatchException, NullReferenceException, OverflowException, MissingMemberException, AmbiguousMatchException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
MissingMethodException
InvalidCastException
RankException
ArrayTypeMismatchException
NullReferenceException
OverflowException
MissingMemberException
AmbiguousMatchException
-
LateIndexGet
public static NetObject LateIndexGet(NetObject o, NetObject[] args, java.lang.String[] paramnames) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, RankException, OverflowException, InvalidCastException, MissingMemberException, AmbiguousMatchException, MissingMethodException, ArrayTypeMismatchException, NullReferenceException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
RankException
OverflowException
InvalidCastException
MissingMemberException
AmbiguousMatchException
MissingMethodException
ArrayTypeMismatchException
NullReferenceException
-
LateIndexGet
public static NetObject LateIndexGet(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, RankException, OverflowException, InvalidCastException, MissingMemberException, AmbiguousMatchException, MissingMethodException, ArrayTypeMismatchException, NullReferenceException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
RankException
OverflowException
InvalidCastException
MissingMemberException
AmbiguousMatchException
MissingMethodException
ArrayTypeMismatchException
NullReferenceException
-
LateCall
public static void LateCall(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean[] CopyBack) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, InvalidCastException, OverflowException, MissingMethodException, RankException, NullReferenceException, ArgumentNullException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
InvalidCastException
OverflowException
MissingMethodException
RankException
NullReferenceException
ArgumentNullException
AmbiguousMatchException
-
LateCall
public static void LateCall(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, JCORefOut dupParam5) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, InvalidCastException, OverflowException, MissingMethodException, RankException, NullReferenceException, ArgumentNullException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
InvalidCastException
OverflowException
MissingMethodException
RankException
NullReferenceException
ArgumentNullException
AmbiguousMatchException
-
LateIndexSet
public static void LateIndexSet(NetObject o, NetObject[] args, java.lang.String[] paramnames) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, InvalidCastException, OverflowException, RankException, MissingMemberException, AmbiguousMatchException, MissingMethodException, ArrayTypeMismatchException, NullReferenceException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
InvalidCastException
OverflowException
RankException
MissingMemberException
AmbiguousMatchException
MissingMethodException
ArrayTypeMismatchException
NullReferenceException
-
LateIndexSet
public static void LateIndexSet(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, ExternalException, InvalidCastException, OverflowException, RankException, MissingMemberException, AmbiguousMatchException, MissingMethodException, ArrayTypeMismatchException, NullReferenceException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
ExternalException
InvalidCastException
OverflowException
RankException
MissingMemberException
AmbiguousMatchException
MissingMethodException
ArrayTypeMismatchException
NullReferenceException
-
LateIndexSetComplex
public static void LateIndexSetComplex(NetObject o, NetObject[] args, java.lang.String[] paramnames, boolean OptimisticSet, boolean RValueBase) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, OverflowException, RankException, MissingMemberException, ArgumentNullException, AmbiguousMatchException, MissingMethodException, NullReferenceException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
OverflowException
RankException
MissingMemberException
ArgumentNullException
AmbiguousMatchException
MissingMethodException
NullReferenceException
-
LateIndexSetComplex
public static void LateIndexSetComplex(NetObject dupParam0, NetObject[] dupParam1, JCORefOut dupParam2, boolean dupParam3, boolean dupParam4) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, OverflowException, RankException, MissingMemberException, ArgumentNullException, AmbiguousMatchException, MissingMethodException, NullReferenceException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
OverflowException
RankException
MissingMemberException
ArgumentNullException
AmbiguousMatchException
MissingMethodException
NullReferenceException
-
LateSet
public static void LateSet(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, MissingMethodException, InvalidCastException, OverflowException, RankException, NullReferenceException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
MissingMethodException
InvalidCastException
OverflowException
RankException
NullReferenceException
AmbiguousMatchException
-
LateSet
public static void LateSet(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, MissingMethodException, InvalidCastException, OverflowException, RankException, NullReferenceException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
MissingMethodException
InvalidCastException
OverflowException
RankException
NullReferenceException
AmbiguousMatchException
-
LateSetComplex
public static void LateSetComplex(NetObject o, NetType objType, java.lang.String name, NetObject[] args, java.lang.String[] paramnames, boolean OptimisticSet, boolean RValueBase) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, MissingMethodException, InvalidCastException, OverflowException, RankException, NullReferenceException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
MissingMethodException
InvalidCastException
OverflowException
RankException
NullReferenceException
AmbiguousMatchException
-
LateSetComplex
public static void LateSetComplex(NetObject dupParam0, NetType dupParam1, java.lang.String dupParam2, NetObject[] dupParam3, JCORefOut dupParam4, boolean dupParam5, boolean dupParam6) throws java.lang.Throwable, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentException, OutOfMemoryException, NotSupportedException, CultureNotFoundException, InvalidOperationException, ArgumentNullException, ArgumentOutOfRangeException, ArrayTypeMismatchException, MissingMemberException, MissingMethodException, InvalidCastException, OverflowException, RankException, NullReferenceException, AmbiguousMatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArgumentException
OutOfMemoryException
NotSupportedException
CultureNotFoundException
InvalidOperationException
ArgumentNullException
ArgumentOutOfRangeException
ArrayTypeMismatchException
MissingMemberException
MissingMethodException
InvalidCastException
OverflowException
RankException
NullReferenceException
AmbiguousMatchException
-
-