1. FilterInstanceCreate function (Windows Drivers)

    https://msdn.microsoft.com/en-us/library/windows/hardware/ff540528...

    The FilterInstanceCreate function creates a handle that can be used to communicate with the given minifilter instance.

    • Syntax

      HRESULT FilterInstanceCreate(
        _In_ LPCWSTR lpFilterName,
        _In_ LPCWSTR lpVolumeName,
        _In_opt_ LPCWSTR lpInstanceName,
        _Out_ HFILTER_INSTANCE *hInstance...
      Was this helpful?Thanks! Give more feedback
  2. c# - Creating instance of DirectShow filter fails - Stack ...

    https://stackoverflow.com/questions/22096071

    I use this function to create DirectShow filter instances which works: private IBaseFilter CreateFilter(Guid category, string name) { object source = null; Guid ...

  3. social.technet.microsoft.com › Scripting

    03/02/2010 · This make me wonder how do I tell it which driver to use? 32 bit or 64 drivers or both? mercredi 27 janvier 2010 11:57. Réponse | Citation ...

  4. FilterInstanceClose function (Windows Drivers)

    https://msdn.microsoft.com/en-us/library/windows/hardware/ff540524...

    The FilterInstanceClose function closes a minifilter instance handle opened by FilterInstanceCreate.

  5. Understanding Action Filters (C#) | Microsoft Docs

    https://docs.microsoft.com/.../understanding-action-filters-cs

    Or, you might want to create an action filter that modifies the view data returned by a controller action. ... You can use an action filter, for instance, ...

  6. FltXxx (Minifilter Driver) Routines (Windows Drivers)

    https://msdn.microsoft.com/en-us/library/windows/hardware/ff544617

    FltXxx (Minifilter Driver) Routines. ... creates a new minifilter driver instance and ... can be redirected from the filter instance associated with the ...

  7. Create Filtered Indexes | Microsoft Docs

    https://docs.microsoft.com/.../indexes/create-filtered-indexes

    This topic describes how to create a filtered index in SQL Server 2017 by using ... It uses a filter predicate to index a ... connect to an instance of ...

  8. Creating an Event Filter (Windows) - msdn.microsoft.com

    https://msdn.microsoft.com/en-us/library/aa389741(v=vs.85).aspx

    To create an event filter. Create an instance of the WMI __EventFilter system class. Create a unique identifier for your filter with the Name property, in one of two ways: Use a private scheme. Describe the type of event you want filtered with the Query property.

  9. How to use Amazon.EC2.Model.Filter with PowerShell to ...

    https://www.yobyot.com/aws/how-to-use-amazon-ec2-model-filter-with...

    26/01/2015 · How to use PowerShell arrays of hash tables with Amazon.EC2.Model.Filter to create complex searches of EC2 instances that return the AMI id

  10. Creating Custom Action Filters in ASP.NET MVC - …

    www.codeguru.com/csharp/article.php/c18959

    16/06/2011 · Creating Custom Action Filters in ASP.NET MVC. ... , IResultFilter or IExceptionFilter interfaces to make your filter an authorization filter, ...