本文整理汇总了C#中Regulus.Bind方法的典型用法代码示例。如果您正苦于以下问题:C# Regulus.Bind方法的具体用法?C# Regulus.Bind怎么用?C# Regulus.Bind使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Regulus
的用法示例。
在下文中一共展示了Regulus.Bind方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CTestSoul
void Regulus.Remoting.PhotonExpansion.IPhotonFramework.ObtainController(Regulus.Remoting.Soul.SoulProvider provider)
{
var soul = new CTestSoul();
provider.Bind<TestRemotingCommon.ITest>(soul);
soul.invoke();
//provider.Unbind<TestRemotingCommon.ITest>(soul);
}
示例2:
void Regulus.Game.ICore.ObtainController(Regulus.Remoting.ISoulBinder binder)
{
binder.Bind<TestNativeGameCore.IMessager>(this);
binder.BreakEvent += () =>
{
binder.Unbind<TestNativeGameCore.IMessager>(this);
};
}
示例3:
// 如果有使用者連線進來則會呼叫此方法
// Call this method if there is a user connection.
void Regulus.Remoting.ICore.AssignBinder(Regulus.Remoting.ISoulBinder binder)
{
// 綁定_SampleClass客戶端將會收到Custom.ISample實體
// Binding _SampleClass client will receive Custom.ISample entities
binder.Bind<Custom.ISample>(_SampleClass);
// 如果客戶端斷線則會發生此事件
// This event occurs if the client is disconnected
binder.BreakEvent += () => { _View.WriteLine("There is a user to leave"); };
_View.WriteLine("There is a user to join.");
}