hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface for URL transfer operations.

    interface ISGIUrlTransfer {
        AsyncCancel(): boolean;
        AsyncGetToFile(filename: string): boolean;
        AsyncGetToString(): boolean;
        AsyncHead(): boolean;
        AsyncPostFromFile(filename: string): boolean;
        AsyncPostFromFileToFile(fromFile: string, toFile: string): boolean;
        AsyncPostFromString(request: string): boolean;
        EnableEncodings(enable: boolean): boolean;
        EnableFreshConnection(enable: boolean): boolean;
        EnableHostVerification(enable: boolean): boolean;
        EnablePeerVerification(enable: boolean): boolean;
        EnableResume(enable: boolean): boolean;
        Escape(text: string): string;
        GetFailureReason(): string;
        GetIdentity(): number;
        GetRequest(): string;
        GetToFile(filename: string): number;
        GetToString(): string;
        GetUrl(): string;
        Head(): any;
        PostFromFile(filename: string): number;
        PostFromString(request: string): number;
        RetainBodyOnError(retain: boolean): boolean;
        SetHttpVersion(version: string): any;
        SetMinimumTransferRate(
            bytes_per_second: number,
            period_in_seconds: number,
        ): boolean;
        SetRequest(req: string): any;
        SetUrl(url: string): any;
        SetUserAndPassword(user: string, password: string): boolean;
        Unescape(text: string): string;
        UrlEncode(url: string): string;
    }

    Hierarchy (View Summary)

    Index

    Methods