Constable Authorization Engine 2.0 BETA

Context.IsNonSystemAssemblyFilter Method 

[This is preliminary documentation and subject to change.]

Determines if the assembly is not one of the .NET Framework system assemblies.

[Visual Basic]
Public Shared Function IsNonSystemAssemblyFilter( _
   ByVal assembly As Assembly, _
   ByVal baseType As Type _
) As Boolean
[C#]
public static bool IsNonSystemAssemblyFilter(
   Assembly assembly,
   Type baseType
);

Parameters

assembly
The assembly to be checked.
baseType
The base type for the enumeration.

Return Value

true if the assembly is not one of the .NET Framework system assemblies; otherwise false.

Remarks

This method is often used as the Context.AssemblyFilterDelegate passed to the GetAvailableTypes method.

See Also

Context Class | LaMarvin.Design Namespace