C# Class CurlSharp.CurlSlist

This class wraps a linked list of strings used in cURL. Use it to build string lists where they're required, such as when calling CurlEasy.SetOpt with CurlOption.Quote as the option.
Inheritance: IDisposable
Afficher le fichier Open project: WarlaxZ/Jackett Class Usage Examples

Private Properties

Свойство Type Description
Dispose void

Méthodes publiques

Méthode Description
Append ( string str ) : void

Append a string to the list.

CurlSlist ( ) : System

Constructor

CurlSlist ( IntPtr handle ) : System
Dispose ( ) : void

Free all internal strings.

Private Methods

Méthode Description
Dispose ( bool disposing ) : void

Method Details

Append() public méthode

Append a string to the list.
public Append ( string str ) : void
str string The string to append.
Résultat void

CurlSlist() public méthode

Constructor
/// This is thrown /// if hasn't bee properly initialized. ///
public CurlSlist ( ) : System
Résultat System

CurlSlist() public méthode

public CurlSlist ( IntPtr handle ) : System
handle System.IntPtr
Résultat System

Dispose() public méthode

Free all internal strings.
public Dispose ( ) : void
Résultat void