как найти имя файла вложения, которое удаляется
оба свойства ItemAttachmentDeleted, ItemAttachmentDeleting afterproperties и beforeproperties пусты
использование
string beforeUrl = properties.BeforeUrl; string[] fileName = beforeUrl.Split('/'); string deletedfile = fileName[fileName.Length - 1];
ниже кода дает нам первое вложение Имя
SPFile attachment = properties.ListItem.ParentList.RootFolder. SubFolders["Attachments"].SubFolders[properties.ListItemId.ToString()]. Files[properties.ListItem.Attachments.Count - 1]; string link = attachment.Name ;