-
Notifications
You must be signed in to change notification settings - Fork 9
Diagnostic Messages
Dingping Zhang edited this page Nov 17, 2021
·
5 revisions
HandyIpc must be referenced
The contract interface is inheritance-free
The following sample generates HI002:
[IpcContract]
public interface IContract : IOther, ... // HI002, remove all interfaces here
{
// Some methods or events
}
Standard event declarations must be used
This interface contains members that are not supported
The contract interface must contains methods
The following sample generates HI100:
[IpcContract]
public interface IContract
{
// HI100, an empty interface, or one that does not contain any methods or events
}