1 write to Value
Microsoft.AspNetCore.Server.HttpSys (1)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (1)
29 internal PSECURITY_DESCRIPTOR(void* value) => this.Value = value;
9 references to Value
Microsoft.AspNetCore.Server.HttpSys (7)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (7)
31 public static implicit operator void*(PSECURITY_DESCRIPTOR value) => value.Value; 35 public static bool operator ==(PSECURITY_DESCRIPTOR left, PSECURITY_DESCRIPTOR right) => left.Value == right.Value; 39 public bool Equals(PSECURITY_DESCRIPTOR other) => this.Value == other.Value; 43 public override int GetHashCode() => unchecked((int)this.Value); 45 public override string ToString() => $"0x{(nuint)this.Value:x}";
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (2)
DelegateTests.cs (2)
330Marshal.Copy(new IntPtr(pSecurityDescriptor.Value), securityDescriptorBytes, 0, length); 352PInvoke.LocalFree((HLOCAL)pSecurityDescriptor.Value);