Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 321411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:50:36+00:00 2026-05-12T08:50:36+00:00

I would expect something like this to work but the ListItem, BeforeProperties, AfterProperties are

  • 0

I would expect something like this to work but the ListItem, BeforeProperties, AfterProperties are all null/empty.
I need the file name and file content.

public class MyItemEventReceiver : SPItemEventReceiver {
    public MyItemEventReceiver() {}
    public override void ItemAdding(SPItemEventProperties properties) {
        SPListItem item = properties.ListItem;
        bool fail = item.File.Name.Equals("fail.txt");
        if (fail) {
            properties.ErrorMessage = "The file failed validation";
            properties.Cancel = true;
        }
    }
}

I can’t use ItemAdded as it is asynchronous and I need to be synchronous, I may prevent the upload and display a message to the user.

Any suggestions would be appreciated. For example, is it possible to override the Upload.aspx?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:50:36+00:00Added an answer on May 12, 2026 at 8:50 am

    You can use the HttpContext to retrieve the HttpFileCollection which should contain the uploaded files. This will only work for individual file uploads through the web UI. Doing multiple file uploads, or saving directly from Office won’t create an HttpContext. Try something like this:

    private HttpContext context;
    
    public MyItemEventReceiver() {
        context = HttpContext.Current;
    }
    
    public override void ItemAdding(SPItemEventProperties properties) {
        HttpFileCollection collection = context.Request.Files;
        foreach (String name in collection.Keys) {
            if (collection[name].ContentLength > 0) {
                // Do what you need with collection[name].InputStream
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example, if I make a query like between(1,4,X)? I would expect something like
I want to do something like: .Helper.ps1 But I have no helper file. I
I wonder why something like this wouldn't work (actually doesn't work): 4.php : <php
I would expect the following code snippet to complain about trying to assign something
I'm trying to do something like this : select * from table where not
note: all this is on chrome I am trying to test something that responds
I would expect a Dictionary object of the form: var dict = new Dictionary<string,string>()
I would expect subclass always call super() for some method. How can I enforce
One would expect that even though strings are immutable, value-equality and reference-equality would not
I would expect the following code to start my slider at '30' in it's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.