internal static bool SetAttributeValue(int handle, string strAttributeName, string value)
 {
     return(SObjectManager.SetAttributeValue(handle, strAttributeName, value));
 }
 internal static string GetAttributeValue(int handle, string strAttributeName)
 {
     return(SObjectManager.GetAttributeValue(handle, strAttributeName));
 }
 internal static string ExecuteMethod(int handle, string strMethodName, string strParams)
 {
     return(SObjectManager.ExecuteMethod(handle, strMethodName, strParams));
 }
 internal static int CreateRemoteObject(string strClassName)
 {
     return(SObjectManager.CreateObject(strClassName));
 }