C# Class TweetWall.WallItem

Encapsulates a single tweet pulled from Twitter to be displayed on the Apple II.
Mostra file Open project: yergacheffe/apple2t Class Usage Examples

Public Methods

Method Description
WallItem ( string from, string message, string imageUri ) : System

Constructs a new WallItem for display.

WallItem ( string from, string message, string imageUri, System.DateTime timestamp ) : System

Constructs a new WallItem for display.

Method Details

WallItem() public method

Constructs a new WallItem for display.
public WallItem ( string from, string message, string imageUri ) : System
from string Twitter account name the message is from. The initial /// "@" is omitted here.
message string The text of the message to display
imageUri string URL pointing to the user's avatar image
return System

WallItem() public method

Constructs a new WallItem for display.
public WallItem ( string from, string message, string imageUri, System.DateTime timestamp ) : System
from string Twitter account name the message is from. The initial /// "@" is omitted here.
message string The text of the message to display
imageUri string URL pointing to the user's avatar image
timestamp System.DateTime Timestamp of when the tweet was posted
return System