/// <summary>Gets the application owners of a specified resource dictionary. </summary>
 /// <param name="dictionary">A resource dictionary. </param>
 /// <returns>The application owners of <paramref name="dictionary" />. If there are no application owners, the method returns <see langword="null" />. </returns>
 // Token: 0x060017A9 RID: 6057 RVA: 0x000738CC File Offset: 0x00071ACC
 public static IEnumerable <Application> GetApplicationOwners(ResourceDictionary dictionary)
 {
     return(ResourceDictionaryDiagnostics.GetOwners <Application>(dictionary.ApplicationOwners, ResourceDictionaryDiagnostics.EmptyApplicationList));
 }
 /// <summary>Gets the framework content owners of a specified resource dictionary. </summary>
 /// <param name="dictionary">A resource dictionary. </param>
 /// <returns>The framework content owners of <paramref name="dictionary" />. If there are no framework content owners, the method returns <see langword="null" />. </returns>
 // Token: 0x060017A8 RID: 6056 RVA: 0x000738BA File Offset: 0x00071ABA
 public static IEnumerable <FrameworkContentElement> GetFrameworkContentElementOwners(ResourceDictionary dictionary)
 {
     return(ResourceDictionaryDiagnostics.GetOwners <FrameworkContentElement>(dictionary.FrameworkContentElementOwners, ResourceDictionaryDiagnostics.EmptyFrameworkContentElementList));
 }