Miner.Geodatabase Namespace > D8ListQueryExtensions Class : QueryExcluding Method |
'Declaration
<System.Runtime.CompilerServices.ExtensionAttribute()> Public Shared Function QueryExcluding( _ ByVal source As ID8List, _ ByVal queryExpression As System.Func(Of ID8ListItem,Boolean), _ ByVal childrenToExclude As System.Func(Of ID8ListItem,Boolean) _ ) As System.Collections.Generic.IEnumerable(Of ID8ListItem)
'Usage
Dim source As ID8List Dim queryExpression As System.Func(Of ID8ListItem,Boolean) Dim childrenToExclude As System.Func(Of ID8ListItem,Boolean) Dim value As System.Collections.Generic.IEnumerable(Of ID8ListItem) value = D8ListQueryExtensions.QueryExcluding(source, queryExpression, childrenToExclude)
[System.Runtime.CompilerServices.Extension()] public static System.Collections.Generic.IEnumerable<ID8ListItem> QueryExcluding( ID8List source, System.Func<ID8ListItem,bool> queryExpression, System.Func<ID8ListItem,bool> childrenToExclude )
public function QueryExcluding( source: ID8List; queryExpression: System.Func; childrenToExclude: System.Func ): System.Collections.Generic.IEnumerable; static;
System.Runtime.CompilerServices.ExtensionAttribute() public static function QueryExcluding( source : ID8List, queryExpression : System.Func, childrenToExclude : System.Func ) : System.Collections.Generic.IEnumerable;
[System.Runtime.CompilerServices.Extension()] public: static System.Collections.Generic.IEnumerable<ID8ListItem*>* QueryExcluding( ID8List* source, System.Func<ID8ListItem*,bool>* queryExpression, System.Func<ID8ListItem*,bool>* childrenToExclude )
[System.Runtime.CompilerServices.Extension()] public: static System.Collections.Generic.IEnumerable<ID8ListItem^>^ QueryExcluding( ID8List^ source, System.Func<ID8ListItem^,bool>^ queryExpression, System.Func<ID8ListItem^,bool>^ childrenToExclude )
public void GetAllSelectedObjectsDoNotFollowRelationshipClasses() { var selectionTab = (ID8List)FeSelTopLevel.Instance; var selectedFeature = selectionTab.QueryExcluding( item => item is ID8Feature, excludedItem => excludedItem is IMMRelationship); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2