Microsoft.Cci.AggregatingLocalScopeProvider.GetSynchronizationInformation C# (CSharp) Method

GetSynchronizationInformation() public method

If the given method body is the "MoveNext" method of the state class of an asynchronous method, the returned object describes where synchronization points occur in the IL operations of the "MoveNext" method. Otherwise the result is null.
public GetSynchronizationInformation ( IMethodBody methodBody ) : ISynchronizationInformation
methodBody IMethodBody
return ISynchronizationInformation
    public ISynchronizationInformation/*?*/ GetSynchronizationInformation(IMethodBody methodBody) {
      var provider = this.GetProvider(methodBody.MethodDefinition);
      if (provider == null) return null;
      return provider.GetSynchronizationInformation(methodBody);
    }