예제 #1
0
    public void UseInterfaceCallback()
    {
        //This method uses the registered client ref to call back
        //into the client

        //Make sure something is registered first
        if (icb != null)
        {
            //Call back into the client code
            icb.CallbackMethod();
        }
    }