本文整理匯總了C#中System.MarshalByRefObject.ToString方法的典型用法代碼示例。如果您正苦於以下問題:C# MarshalByRefObject.ToString方法的具體用法?C# MarshalByRefObject.ToString怎麽用?C# MarshalByRefObject.ToString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.MarshalByRefObject
的用法示例。
在下文中一共展示了MarshalByRefObject.ToString方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: RegisterObjectWellKnown
private static void RegisterObjectWellKnown(MarshalByRefObject obj, string servicename)
{
ObjRef objrefWellKnown = RemotingServices.Marshal(obj, servicename);
log.Debug("RegisterService: " + obj.ToString()+" as "+servicename);
}
示例2: UnregisterObjectWellKnown
private static void UnregisterObjectWellKnown(MarshalByRefObject obj)
{
if (obj!=null)
log.Debug("UnregisterService: " + obj.ToString()+" "+RemotingServices.Disconnect(obj).ToString());
}
示例3: PublishWellKnownServiceInstance
/// <summary>
/// Publishes the well known service instance.
/// </summary>
/// <param name="notifyName">Name of the notify.</param>
/// <param name="interfaceType">Type of the interface.</param>
/// <param name="instance">The instance.</param>
/// <param name="mode">The mode.</param>
public void PublishWellKnownServiceInstance(string notifyName, Type interfaceType, MarshalByRefObject instance, WellKnownObjectMode mode)
{
WriteLog("Instance URL --> " + BuildUrl(notifyName), LogType.Information);
RemotingConfiguration.RegisterWellKnownServiceType(interfaceType, BuildUrl(notifyName), mode);
ObjRef objRef = RemotingServices.Marshal(instance, notifyName);
if (instance == null)
WriteLog("(" + BuildUrl(notifyName) + ") start listening at port: " + serverPort, LogType.Information);
else
WriteLog("(" + instance.ToString() + ") start listening at port: " + serverPort, LogType.Information);
}