C# Class TweetWall.WallItem

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

Méthodes publiques

Méthode 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 méthode

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
Résultat System

WallItem() public méthode

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
Résultat System