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
Exibir arquivo Open project: WarlaxZ/Jackett Class Usage Examples

Private Properties

Property Type Description
Dispose void

Public Methods

Method 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

Method Description
Dispose ( bool disposing ) : void

Method Details

Append() public method

Append a string to the list.
public Append ( string str ) : void
str string The string to append.
return void

CurlSlist() public method

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

CurlSlist() public method

public CurlSlist ( IntPtr handle ) : System
handle System.IntPtr
return System

Dispose() public method

Free all internal strings.
public Dispose ( ) : void
return void