Smrf.NodeXL.ExcelTemplate.TwitterSearchNetworkVertexMetricUtil.AddGraphMetricValueForTopStrings C# (CSharp) Method

AddGraphMetricValueForTopStrings() public static method

public static AddGraphMetricValueForTopStrings ( IEnumerable edges, String edgeColumnName, Int32 maximumTopStrings, Int32 vertexRowID, List topStringsByCountGraphMetricValues, List topStringsBySalienceGraphMetricValues ) : void
edges IEnumerable
edgeColumnName String
maximumTopStrings System.Int32
vertexRowID System.Int32
topStringsByCountGraphMetricValues List
topStringsBySalienceGraphMetricValues List
return void
    AddGraphMetricValueForTopStrings
    (
        IEnumerable<IEdge> edges,
        String edgeColumnName,
        Int32 maximumTopStrings,
        Int32 vertexRowID,
        List<GraphMetricValueWithID> topStringsByCountGraphMetricValues,
        List<GraphMetricValueWithID> topStringsBySalienceGraphMetricValues
    )
    {
        Debug.Assert(edges != null);
        Debug.Assert( !String.IsNullOrEmpty(edgeColumnName) );
        Debug.Assert(maximumTopStrings > 0);
        Debug.Assert(topStringsByCountGraphMetricValues != null);
        Debug.Assert(topStringsBySalienceGraphMetricValues != null);

        AddGraphMetricValueForTopStringsByCount(edges, edgeColumnName,
            maximumTopStrings, vertexRowID,
            topStringsByCountGraphMetricValues);

        AddGraphMetricValueForTopStringsBySalience(edges, edgeColumnName,
            maximumTopStrings, vertexRowID,
            topStringsBySalienceGraphMetricValues);
    }