Method: Chef::ReservedNames::Win32::Security::ACE#sid

Defined in:
lib/chef/win32/security/ace.rb

#sidObject



95
96
97
98
99
# File 'lib/chef/win32/security/ace.rb', line 95

def sid
  # The SID runs off the end of the structure, starting at :SidStart.
  # Use pointer arithmetic to get a pointer to that location.
  Chef::ReservedNames::Win32::Security::SID.new(struct.pointer + struct.offset_of(:SidStart))
end