Part 1 of a multi-PR change for Emby.DLNA

This commit is contained in:
BaronGreenback
2020-07-05 17:47:23 +01:00
parent 46f67c9ea4
commit ab10f21027
4 changed files with 54 additions and 3 deletions

View File

@@ -125,5 +125,13 @@ namespace MediaBrowser.Common
/// <param name="type">The type.</param>
/// <returns>System.Object.</returns>
object CreateInstance(Type type);
/// <summary>
/// Creates a new instance of a class.
/// </summary>
/// <param name="type">The type to create.</param>
/// <param name="parameter">An addtional parameter.</param>
/// <returns>Created instance.</returns>
object CreateInstance(Type type, object parameter);
}
}