ChatterService.Web.ChatterProxyService.getSalesforceUserId C# (CSharp) Method

getSalesforceUserId() private method

private getSalesforceUserId ( ChatterSoapService soap, string nodeId ) : string
soap ChatterSoapService
nodeId string
return string
        private string getSalesforceUserId(ChatterSoapService soap, string nodeId)
        {
            Object objUserId = HttpRuntime.Cache[nodeId];

            if (objUserId == null)
            {
                objUserId = soap.GetUserId(profilesService.GetEmployeeId(nodeId));
                HttpRuntime.Cache.Insert(nodeId, objUserId);
            }
            return Convert.ToString(objUserId);
        }