ALFA.Database.ACR_GetPersistentString C# (CSharp) Method

ACR_GetPersistentString() public method

Retrieve a string from the persistent store.
public ACR_GetPersistentString ( UInt32 Object, string VarName ) : string
Object System.UInt32 Supplies the object whose persistent store is /// to be accessed.
VarName string Supplies the variable keyword to query.
return string
        public string ACR_GetPersistentString(UInt32 Object, string VarName)
        {
            DemandInitialize();

            return (string)ACR_GetPersistentString_Method.Invoke(DBLibraryScript, new object[] { Object, VarName });
        }