コード例 #1
0
 internal static bool CanAttachHandle(string className, int handle)
 {
     return(ServerObjectManager.CanAttachHandle(className, handle));
 }
コード例 #2
0
 public static object ExecuteFunction(int handle, string functionName, object parameters)
 {
     return(ServerObjectManager.ExecuteFunction(handle, functionName, parameters));
 }
コード例 #3
0
 public static bool SetAttributeValue(int handle, string attributeName, object newValue)
 {
     return(ServerObjectManager.SetAttributeValue(handle, attributeName, newValue));
 }
コード例 #4
0
 public static object GetAttributeValue(int handle, string attributeName)
 {
     return(ServerObjectManager.GetAttributeValue(handle, attributeName));
 }
コード例 #5
0
 internal static void DetachHandle(int handle)
 {
     ServerObjectManager.DetachHandle(handle);
 }
コード例 #6
0
 internal static int CreateRemoteObject(string className)
 {
     return(ServerObjectManager.CreateObject(className));
 }