C# Класс TweetWall.WallItem

Encapsulates a single tweet pulled from Twitter to be displayed on the Apple II.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

WallItem() публичный Метод

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
Результат System

WallItem() публичный Метод

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
Результат System