ALFA.Database.ACR_SetPersistentString C# (CSharp) Метод

ACR_SetPersistentString() публичный Метод

Set a string value in the persistent store.
public ACR_SetPersistentString ( UInt32 Object, string VarName, string Value ) : void
Object System.UInt32 Supplies the object whose persistent store is /// to be accessed.
VarName string Supplies the variable keyword to set.
Value string Supplies the variable data.
Результат void
        public void ACR_SetPersistentString(UInt32 Object, string VarName, string Value)
        {
            DemandInitialize();

            //
            // Call the standard method, which takes four parameters
            // (iExpiration - unused - for the last argument).
            //

            ACR_SetPersistentString_Method.Invoke(DBLibraryScript, new object[] { Object, VarName, Value, (Int32)0 });
        }