Microsoft.Win32.UnsafeNativeMethods.ManifestEtw.EventSetInformation C# (CSharp) Méthode

EventSetInformation() private méthode

private EventSetInformation ( [ registrationHandle, [ informationClass, [ eventInformation, [ informationLength ) : int
registrationHandle [
informationClass [
eventInformation [
informationLength [
Résultat int
            internal static int EventSetInformation(
                [In] long registrationHandle,
                [In] EVENT_INFO_CLASS informationClass,
                [In] void* eventInformation,
                [In] int informationLength)
            {
                return Interop.Kernel32.EventSetInformation((ulong)registrationHandle, (int)informationClass, (IntPtr)eventInformation, informationLength);
            }