Smrf.SocialNetworkLib.EmailParticipantPair.EmailParticipantPair C# (CSharp) Method

EmailParticipantPair() public method

Initializes a new instance of the EmailParticipantPair class with specified values.
public EmailParticipantPair ( String participant1, String participant2, Int32 edgeWeight ) : System
participant1 String /// The first participant, as an email address. Can't be null or empty. ///
participant2 String /// The second participant, as an email address. Can't be null or empty. ///
edgeWeight System.Int32 /// The strength of the tie between the participants. Must be /// non-negative. ///
return System
    public EmailParticipantPair
    (
        String participant1,
        String participant2,
        Int32 edgeWeight
    )
    : base(participant1, participant2)
    {
        m_iEdgeWeight = edgeWeight;

        AssertValid();
    }

Same methods

EmailParticipantPair::EmailParticipantPair ( ) : System