Метод | Описание | |
---|---|---|
Escape ( string url, int length ) : string |
URL encode a String.
|
|
GetVersionInfo ( CurlVersion ver ) : |
Get a CurlVersionInfoData object.
|
|
GlobalCleanup ( ) : void |
Process-wide cleanup -- call just before exiting process. While it's not necessary that your program call this method before exiting, doing so will prevent leaks of native cURL resources. |
|
GlobalInit ( CurlInitFlag flags ) : CurlCode |
Process-wide initialization -- call only once per process.
|
|
Unescape ( string url, int length ) : string |
URL decode a String.
|
Метод | Описание | |
---|---|---|
Curl ( ) : System |
Class constructor - initialize global status.
|
|
EnsureCurl ( ) : void |
Called by other classes to ensure valid cURL state.
|
public static Escape ( string url, int length ) : string | ||
url | string | The string to URL encode. |
length | int | /// Input string length; /// use 0 for cURL to determine. /// |
Результат | string |
public static GetVersionInfo ( CurlVersion ver ) : |
||
ver | CurlVersion |
/// Specify a |
Результат |
public static GlobalInit ( CurlInitFlag flags ) : CurlCode | ||
flags | CurlInitFlag |
/// An or'd combination of
/// |
Результат | CurlCode |
public static Unescape ( string url, int length ) : string | ||
url | string | The string to URL decode. |
length | int | /// Input string length; /// use 0 for cURL to determine. /// |
Результат | string |