Package microsoft.build.framework
Interface IEventSource
-
- All Superinterfaces:
IJCOBridgeReflected
- All Known Implementing Classes:
IEventSourceImplementation
public interface IEventSource extends IJCOBridgeReflected
The base .NET class managing Microsoft.Build.Framework.IEventSource, Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.Build.Framework.IEventSource
Powered by JCOBridge: more info at https://www.jcobridge.com
- Version:
- 1.14.3.0
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic String
assemblyShortName
Assembly name: Microsoft.Build.Frameworkstatic String
className
Qualified class name: Microsoft.Build.Framework.IEventSource
-
Method Summary
-
-
-
Field Detail
-
assemblyFullName
static final String assemblyFullName
Fully assembly qualified name: Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
static final String assemblyShortName
Assembly name: Microsoft.Build.Framework- See Also:
- Constant Field Values
-
className
static final String className
Qualified class name: Microsoft.Build.Framework.IEventSource- See Also:
- Constant Field Values
-
-
Method Detail
-
ToIEventSource
static IEventSource ToIEventSource(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoIEventSource
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
IEventSource
instance- Throws:
Throwable
- in case of error during cast operation
-
getJCOAssemblyName
String getJCOAssemblyName()
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
String getJCOClassName()
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
String getJCOObjectName()
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
Object getJCOInstance()
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Returns:
- An
Object
representing the instance of the instantiated Class
-
getJCOType
JCType getJCOType()
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Returns:
- A
JCType
representing the Type of the instantiated Class
-
addAnyEventRaised
void addAnyEventRaised(AnyEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeAnyEventRaised
void removeAnyEventRaised(AnyEventHandler handler) throws Throwable
- Throws:
Throwable
-
addErrorRaised
void addErrorRaised(BuildErrorEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeErrorRaised
void removeErrorRaised(BuildErrorEventHandler handler) throws Throwable
- Throws:
Throwable
-
addBuildFinished
void addBuildFinished(BuildFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeBuildFinished
void removeBuildFinished(BuildFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addMessageRaised
void addMessageRaised(BuildMessageEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeMessageRaised
void removeMessageRaised(BuildMessageEventHandler handler) throws Throwable
- Throws:
Throwable
-
addBuildStarted
void addBuildStarted(BuildStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeBuildStarted
void removeBuildStarted(BuildStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addStatusEventRaised
void addStatusEventRaised(BuildStatusEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeStatusEventRaised
void removeStatusEventRaised(BuildStatusEventHandler handler) throws Throwable
- Throws:
Throwable
-
addWarningRaised
void addWarningRaised(BuildWarningEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeWarningRaised
void removeWarningRaised(BuildWarningEventHandler handler) throws Throwable
- Throws:
Throwable
-
addCustomEventRaised
void addCustomEventRaised(CustomBuildEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeCustomEventRaised
void removeCustomEventRaised(CustomBuildEventHandler handler) throws Throwable
- Throws:
Throwable
-
addProjectFinished
void addProjectFinished(ProjectFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeProjectFinished
void removeProjectFinished(ProjectFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addProjectStarted
void addProjectStarted(ProjectStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeProjectStarted
void removeProjectStarted(ProjectStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addTargetFinished
void addTargetFinished(TargetFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeTargetFinished
void removeTargetFinished(TargetFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addTargetStarted
void addTargetStarted(TargetStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeTargetStarted
void removeTargetStarted(TargetStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addTaskFinished
void addTaskFinished(TaskFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeTaskFinished
void removeTaskFinished(TaskFinishedEventHandler handler) throws Throwable
- Throws:
Throwable
-
addTaskStarted
void addTaskStarted(TaskStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
removeTaskStarted
void removeTaskStarted(TaskStartedEventHandler handler) throws Throwable
- Throws:
Throwable
-
-