Microsoft.Win32.UnsafeNativeMethods.ManifestEtw.EventSetInformation C# (CSharp) Method

EventSetInformation() private method

private EventSetInformation ( [ registrationHandle, [ informationClass, [ eventInformation, [ informationLength ) : int
registrationHandle [
informationClass [
eventInformation [
informationLength [
return 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);
            }