RewriteSOP() public static method

Takes a XML representation of a SceneObjectPart and returns another XML representation with creator data added to it.
public static RewriteSOP ( string xml, string profileURL, IUserAccountService userService, UUID scopeID ) : string
xml string The SceneObjectPart represented in XML2
profileURL string The URL of the profile service for the creator
userService IUserAccountService The service for retrieving user account information
scopeID UUID The scope of the user account information (Grid ID)
return string
Beispiel #1
0
        protected byte[] AdjustIdentifiers(byte[] data)
        {
            string xml = Utils.BytesToString(data);

            return(Utils.StringToBytes(ExternalRepresentationUtils.RewriteSOP(xml, m_ProfileServiceURL, m_UserAccountService, UUID.Zero)));
        }