Содержание

AddStorageItems

Adds specified data to the storage on the specified address.

Syntax

procedure AddStorageItems(aStorageURL: string; aStorageKey: string;
  aCryptoKey: string; aItems: array of string; aStoragePass: string = '');

Parameters

Notes

Examples

  1. var Items:array of string;
    Items.Add('first item');
    Items.Add('second item');
    Items.Add('third item');
    //Add the elements to the storage
    AddStorageItems('http://mysite.ru/storage.php','requests','mycrypto',Items);