This is a quirk of C#, it doesn't support raise accessors. Only add and remove. Other .NET languages like VB.NET, F# and C++/CLI do support them and it is well defined in the CLI spec, named "fire" in that one.
It is hard to explain why the C# team skipped it, I've never seen a good explanation for it. Pure speculation: it may have had something to do with their desire to restrict the ability to raise events only to the class that declared it. This same restriction does not exist in C++/CLI. Not a great explanation however, VB.NET also restricts it but still has a raise accessor. It is a bit of a loss, hundreds of thousands of hours must have been lost by C# programmers writing the standard raise event pattern as well as diagnosing NREs when they forgot to check for null.
Anyhoo, you'll never get anything but null from GetRaiseMethod() if you reflect code written in C#. You'll however always get a non-null when it was written in VB.NET, F# or C++/CLI. You'll have to dig out the backing delegate variable if you need to raise the event with reflection, that can be painful. If the auto-generated add/remove accessors were used then the backing variable has the same name as the event and you can retrieve it with Type.GetField(), using BindingFlags.NonPublic | BindingFlags.Instance.