/// <summary>
 ///     Returns the <see cref="IEIDInfo" /> for the specified network element.
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="eid">The element ID.</param>
 /// <param name="elementType">Type of the element.</param>
 /// <returns>
 ///     Returns the <see cref="IEIDInfo" /> interface for the network element.
 /// </returns>
 public static IEIDInfo GetEIDInfo(this IGeometricNetwork source, int eid, esriElementType elementType)
 {
     return(source.GetEIDInfo(eid, elementType, true, true));
 }