  | CargoFunctionsHoldsLikeT Method | 
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Cargo.LinqAssembly: WikiClientLibrary.Cargo (in WikiClientLibrary.Cargo.dll) Version: 0.9.0-int.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic static bool HoldsLike<T>(
	IEnumerable<T> cargoList,
	string pattern
)
Public Shared Function HoldsLike(Of T) ( 
	cargoList As IEnumerable(Of T),
	pattern As String
) As Boolean
Dim cargoList As IEnumerable(Of T)
Dim pattern As String
Dim returnValue As Boolean
returnValue = CargoFunctions.HoldsLike(cargoList, 
	pattern)
public:
generic<typename T>
static bool HoldsLike(
	IEnumerable<T>^ cargoList, 
	String^ pattern
)
static member HoldsLike : 
        cargoList : IEnumerable<'T> * 
        pattern : string -> bool Parameters
- cargoList  IEnumerableT
 - Cargo table field expression of type list.
 - pattern  String
 - the matching pattern with % or _ wildcard.
 
Type Parameters
- T
 - element name.
 
Return Value
Booleanwhether the list contains the matching element.
See Also