How to call an async method from a getter or setter?

There is no technical reason that async properties are not allowed in C#. It was a purposeful design decision, because “asynchronous properties” is an oxymoron.

Properties should return current values; they should not be kicking off background operations.

Usually, when someone wants an “asynchronous property”, what they really want is one of these:

  1. An asynchronous method that returns a value. In this case, change the property to an async method.
  2. A value that can be used in data-binding but must be calculated/retrieved asynchronously. In this case, either use an async factory method for the containing object or use an async InitAsync() method. The data-bound value will be default(T) until the value is calculated/retrieved.
  3. A value that is expensive to create, but should be cached for future use. In this case, use AsyncLazy from my blog or AsyncEx library. This will give you an awaitable property.

Update: I cover asynchronous properties in one of my recent “async OOP” blog posts.

Leave a Comment