コード例 #1
0
 internal RenderProcessCall(RemoteCallId callId, bool returnImmediately) : base(callId, returnImmediately)
 {
 }
コード例 #2
0
 internal RemoteCall(RemoteCallId callId, bool returnImmediately)
 {
     this.callId            = callId;
     this.returnImmediately = returnImmediately;
 }
コード例 #3
0
 internal RenderProcessCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #4
0
 internal CtorWithGCHandleRemoteCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #5
0
 internal RemoteCall(RemoteCallId callId)
 {
     this.callId            = callId;
     this.returnImmediately = false;
 }
コード例 #6
0
 internal RemoteEventCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #7
0
 internal CtorRemoteCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #8
0
 internal SetCallbackRemoteCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #9
0
 internal GetGcHandleRemoteCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #10
0
 internal BrowserProcessCall(RemoteCallId callId) : base(callId)
 {
 }
コード例 #11
0
ファイル: RenderProcessCall.cs プロジェクト: xmcy0011/NanUI
 internal RenderProcessCall(RemoteCallId callId, bool returnImmediately)
     : base(callId, returnImmediately)
 {
 }
コード例 #12
0
ファイル: RenderProcessCall.cs プロジェクト: xmcy0011/NanUI
 internal RenderProcessCall(RemoteCallId callId)
     : base(callId)
 {
 }
コード例 #13
0
ファイル: RemoteCall.cs プロジェクト: xmcy0011/NanUI
 internal RemoteCall(RemoteCallId callId, bool returnImmediately)
 {
     this.callId = callId;
     this.returnImmediately = returnImmediately;
 }
コード例 #14
0
ファイル: RemoteCall.cs プロジェクト: xmcy0011/NanUI
 internal RemoteCall(RemoteCallId callId)
 {
     this.callId = callId;
     this.returnImmediately = false;
 }