Analyzer.ConnectedComponentCalculator.GetLowLink C# (CSharp) Method

GetLowLink() protected method

protected GetLowLink ( IVertex oVertex ) : Int32
oVertex IVertex
return System.Int32
        GetLowLink
        (
            IVertex oVertex
        )
        {
            Debug.Assert(oVertex != null);

            return ((Int32)oVertex.GetRequiredValue(
                ReservedMetadataKeys.ConnectedComponentCalculatorLowLink,
                typeof(Int32)));
        }