All Projects → osoykan → FluentAssemblyScanner

osoykan / FluentAssemblyScanner

Licence: MIT License
Fluent assembly and type scanner 🔍 for .Net

Programming Languages

C#
18002 projects
powershell
5483 projects

Projects that are alternatives of or similar to FluentAssemblyScanner

Qr-Code-Scanner-
This is simple QR code scanner with Room Database. 100% written in Kotlin.
Stars: ✭ 19 (-64.81%)
Mutual labels:  scanner
lachesis
👨‍💻 A work-in-progress web services mass scanner written in Rust
Stars: ✭ 55 (+1.85%)
Mutual labels:  scanner
Resources
No description or website provided.
Stars: ✭ 38 (-29.63%)
Mutual labels:  scanner
cordova-plugin-document-scanner
cordova plugin for document scan
Stars: ✭ 77 (+42.59%)
Mutual labels:  scanner
wiasane
Scanner Access Now Easy - WIA Driver
Stars: ✭ 109 (+101.85%)
Mutual labels:  scanner
log4shell-finder
Fastest filesystem scanner for log4shell (CVE-2021-44228, CVE-2021-45046) and other vulnerable (CVE-2017-5645, CVE-2019-17571, CVE-2022-23305, CVE-2022-23307 ... ) instances of log4j library. Excellent performance and low memory footprint.
Stars: ✭ 22 (-59.26%)
Mutual labels:  scanner
webcocktail
An automatic and lightweight web application scanning tool for CTF.
Stars: ✭ 28 (-48.15%)
Mutual labels:  scanner
simple-login-qrcode-webcam-php
🐱‍💻 Just simple login mechanism using QR Code Scanner with Webcam in PHP
Stars: ✭ 66 (+22.22%)
Mutual labels:  scanner
shellsum
A defense tool - detect web shells in local directories via md5sum
Stars: ✭ 30 (-44.44%)
Mutual labels:  scanner
QKMRZScanner
Scan MRZ (Machine Readable Zone) from identity documents (passport, id, visa) using iPhone/iPad (iOS)
Stars: ✭ 81 (+50%)
Mutual labels:  scanner
nuubi
Nuubi Tools (Information-ghatering|Scanner|Recon.)
Stars: ✭ 76 (+40.74%)
Mutual labels:  scanner
R30X-Fingerprint-Sensor-Library
Arduino library for R30X series optical fingerprint scanners.
Stars: ✭ 13 (-75.93%)
Mutual labels:  scanner
docker-testssl
http://testssl.sh/ in a tiny docker container
Stars: ✭ 19 (-64.81%)
Mutual labels:  scanner
yafinger
yet another web fingerprinter
Stars: ✭ 16 (-70.37%)
Mutual labels:  scanner
pyimgscan
Take any phone-taken picture and turn it into a document scan.
Stars: ✭ 48 (-11.11%)
Mutual labels:  scanner
ScanShine
ScanShine - quickly take shining scans of your documents by using only your android phone. This scanner app takes pictures of docs, trims, enhances, and let you share them to your friends. Everything packed in an optimistic sunshine theme.
Stars: ✭ 19 (-64.81%)
Mutual labels:  scanner
Horus-Eye
Just Simple Code To Play With Android Payloads (;
Stars: ✭ 54 (+0%)
Mutual labels:  scanner
jsleak
a Go code to detect leaks in JS files via regex patterns
Stars: ✭ 111 (+105.56%)
Mutual labels:  scanner
citrixmash scanner
A fast multi threaded scanner for Citrix ADC (NetScaler) CVE-2019-19781 - Citrixmash / Shitrix
Stars: ✭ 36 (-33.33%)
Mutual labels:  scanner
Saraff.Twain.NET
Saraff.Twain.NET is the skillful scanning component which allows you to control work of flatbed scanner, web and digital camera and any other TWAIN device from .NET environment. You can use this library in your programs written in any programming languages compatible with .NET technology.
Stars: ✭ 74 (+37.04%)
Mutual labels:  scanner

FluentAssemblyScanner

Assembly and type scanner for .NET

Build status NuGet version Coverage Status

Examples

public static void Program()
{
  IEnumerable<Type> types = AssemblyScanner.FromAssemblyInDirectory(new AssemblyFilter("bin"))
                                           .IncludeNonPublicTypes()
                                           .BasedOn<IAnimal>()
                                           .InSameNamespaceOf(typeof(IAnimal))
                                           .HasAttribute<VoiceAttribute>()
                                           .OrBasedOn<Human>()
                                           .Filter()
                                           .Classes()
                                           .NonStatic()
                                           .MethodName("Run")
                                           .MethodNameContains("n")
                                           .MethodHasAttribute<VoiceAttribute>()
                                           .Scan();
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].