Does properties.OpenWeb() create a new SPRequest object or does it refer to the existing SPWeb object already there in the properties object? Should we manually dispose of the SPWeb obtained in this manner?
Is the second line safer?
SPWeb _web = properties.OpenWeb();
SPWeb _web = properties.ListItem.ParentList.ParentWeb;
