It looks correct, and using partial types makes a lot of sense and is trivial, but the partial method here is clearly pointless. Non-implemented partial method is a pretty delicate feature which is relatively hard to understand. If has very limited domain of applicability, where it is really useful for something. I explained it in detail in my past answer:
Regarding partial method implementation[
^].
Please see it with full attention, especially the part after [EDIT]; it's not so easy to understand. Microsoft explanation is not so clear.
In a nutshell: you can easily forget about partial methods without any risk to compromise your productivity, but partial types can greatly enrich your style repertoire. Remember: there is nothing fundamental here, this is all about style and maintainability of your code.
—SA