admin管理员组

文章数量:1532473

2024年6月8日发(作者:)

// Properties

///

/// Gets and sets the user agent string.

///

public string Agent

{

get

{ return m_strAgent; }

set

{ m_strAgent = (value == null ? "" : value); }

}

///

/// Gets and sets the referer string.

///

public string Referer

{

get

{ return m_strReferer; }

set

{ m_strReferer = (value == null ? "" : value); }

}

///

/// Gets and sets the minimum pause time interval (in mSec).

///

public int Pause

{

get

{ return m_nPause; }

set

{ m_nPause = value; }

}

///

/// Gets and sets the timeout (in mSec).

///

public int Timeout

{

get

{ return m_nTimeout; }

set

{ m_nTimeout = value; }

}

///

/// Returns the retrieved content.

///

/// The content.

public string Content

{

get

{ return m_strContent; }

}

///

/// Gets the fetch timestamp.

///

public DateTime FetchTime

{

get

{ return m_tmFetchTime; }

}

///

/// Gets the last error message, if any.

///

public string ErrorMsg

本文标签: 程序发布源码