示例#1
0
 internal static bool SetAttributeValue(int handle, string strAttributeName, string value)
 {
     return(SObjectManager.SetAttributeValue(handle, strAttributeName, value));
 }
示例#2
0
 internal static string GetAttributeValue(int handle, string strAttributeName)
 {
     return(SObjectManager.GetAttributeValue(handle, strAttributeName));
 }
示例#3
0
 internal static string ExecuteMethod(int handle, string strMethodName, string strParams)
 {
     return(SObjectManager.ExecuteMethod(handle, strMethodName, strParams));
 }
示例#4
0
 internal static int CreateRemoteObject(string strClassName)
 {
     return(SObjectManager.CreateObject(strClassName));
 }