ItemAdding イベントでドキュメントを検証する場合、ユーザーにエラーを表示する方法はたくさんありますが、検証が成功したなどの成功をユーザーに表示する方法はないようです。ドキュメント ライブラリの上部にあるユーザーへの情報メッセージは素晴らしいでしょう。
public class MyItemEventReceiver : SPItemEventReceiver {
public MyItemEventReceiver() {}
public override void ItemAdding(SPItemEventProperties properties) {
// Do some validation
// If successful display message to user - can't seem to do
// If unsuccessful cancel and go to the error page - easy
}
}
}