C# Class Smrf.NodeXL.GraphMLLib.TwitterUser

Represents a user in a Twitter network.
This class wraps the GraphML XML node that represents a user in a Twitter network, together with one or more statuses for the user.

This is meant for use while creating Twitter GraphML XML documents for use with the NodeXL Excel Template.

Inheritance: Object
Show file Open project: 2014-sed-team3/term-project Class Usage Examples

Protected Properties

Property Type Description
m_ScreenName String
m_Statuses LinkedList
m_VertexXmlNode System.Xml.XmlNode

Public Methods

Method Description
TwitterUser ( String screenName, XmlNode vertexXmlNode ) : System

Initializes a new instance of the TwitterUser class.

Private Methods

Method Description
AssertValid ( ) : void

Method Details

TwitterUser() public method

Initializes a new instance of the TwitterUser class.
public TwitterUser ( String screenName, XmlNode vertexXmlNode ) : System
screenName String /// The user's screen name. ///
vertexXmlNode System.Xml.XmlNode /// The vertex XmlNode from a GraphMLXmlDocument that represents the user /// in a Twitter network. ///
return System

Property Details

m_ScreenName protected property

protected String m_ScreenName
return String

m_Statuses protected property

protected LinkedList m_Statuses
return LinkedList

m_VertexXmlNode protected property

protected XmlNode,System.Xml m_VertexXmlNode
return System.Xml.XmlNode