Smrf.NodeXL.GraphMLLib.TwitterStatus.TwitterStatus C# (CSharp) Method

TwitterStatus() private method

Initializes a new instance of the TwitterStatus class.
private TwitterStatus ( String ID, String text, String parsedDateUtc, String latitude, String longitude, String urls, String hashtags, String inReplyToStatusID ) : System
ID String /// The status ID. Can't be null or empty. ///
text String /// The status text. Can't be null or empty. ///
parsedDateUtc String /// The parsed status date as a culture-invariant UTC string, or null if /// not available. See . Can be null. ///
latitude String /// The status's latitude, or null if not available. ///
longitude String /// The status's longitude, or null if not available. ///
urls String /// The status's space-delimited URLs, or null if not available. ///
hashtags String /// The status's space-delimited hashtags, or null if not available. ///
inReplyToStatusID String /// The in-reply-to status ID, or null if not available. ///
return System
    private TwitterStatus
    (
        String ID,
        String text,
        String parsedDateUtc,
        String latitude,
        String longitude,
        String urls,
        String hashtags,
        String inReplyToStatusID
    )
    {
        m_ID = ID;
        m_Text = text;
        m_ParsedDateUtc = parsedDateUtc;
        m_Latitude = latitude;
        m_Longitude = longitude;
        m_Urls = urls;
        m_Hashtags = hashtags;
        m_InReplyToStatusID = inReplyToStatusID;

        AssertValid();
    }