C# 클래스 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.
상속: IDisposable
파일 보기 프로젝트 열기: WarlaxZ/Jackett 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Dispose void

공개 메소드들

메소드 설명
Append ( string str ) : void

Append a string to the list.

CurlSlist ( ) : System

Constructor

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

Free all internal strings.

비공개 메소드들

메소드 설명
Dispose ( bool disposing ) : void

메소드 상세

Append() 공개 메소드

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

CurlSlist() 공개 메소드

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

CurlSlist() 공개 메소드

public CurlSlist ( IntPtr handle ) : System
handle System.IntPtr
리턴 System

Dispose() 공개 메소드

Free all internal strings.
public Dispose ( ) : void
리턴 void