| GenericExtensionsGetValueT Method (NetworkDataT, ILocation) | 
 
            Get a value from the networkData at the given
            location. If no value is found at location, the
            global value is used. If no global value is defined, an exception
            is thrown.
            
 
    Namespace: 
   DHI.Mike1D.Generic
    Assembly:
   DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 19.0.0.0 (11.1.1.1111)
 Syntax
Syntaxpublic static T GetValue<T>(
	this NetworkData<T> networkData,
	ILocation location
)
<ExtensionAttribute>
Public Shared Function GetValue(Of T) ( 
	networkData As NetworkData(Of T),
	location As ILocation
) As T
public:
[ExtensionAttribute]
generic<typename T>
static T GetValue(
	NetworkData<T>^ networkData, 
	ILocation^ location
)
Parameters
- networkData
- Type: DHI.Mike1D.GenericNetworkDataT
 Network data to get data from
- location
- Type: DHI.Mike1D.GenericILocation
 Location to get values at
Type Parameters
- T
- Type of value
Return Value
Type: 
TValue at location
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
NetworkDataT. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also