コード例 #1
0
    public override void throwBaseAsBase_async(AMD_TestIntf_throwBaseAsBase cb, Ice.Current current)
    {
        BaseException be = new BaseException();

        be.sbe   = "sbe";
        be.pb    = new B();
        be.pb.sb = "sb";
        be.pb.pb = be.pb;
        cb.ice_exception(be);
    }
コード例 #2
0
ファイル: TestAMDI.cs プロジェクト: pedia/zeroc-ice
 public override void throwBaseAsBase_async(AMD_TestIntf_throwBaseAsBase cb, Ice.Current current)
 {
     BaseException be = new BaseException();
     be.sbe = "sbe";
     be.pb = new B();
     be.pb.sb = "sb";
     be.pb.pb = be.pb;
     cb.ice_exception(be);
 }