Like the below code, an interface with the OperationContract attribute, I want to create another interface that inherits IPCClient but without the OperationContract attribute. In runtime, add the attribute to all methods of inherited interface or class while "initialize method" is called.
public interface IPCClient
{
[OperationContract]
void Event(string eventitem);
[OperationContract]
void Message(string msg);
[OperationContract]
ComponentCmdResponse Command(ComponentCmd cmd);
}