Exemple #1
0
 /// <summary>
 /// Creates a new instance of <see cref="AssetWriterCollection"/> class.
 /// </summary>
 /// <param name="displayName">The value of <see cref="IMagicSupport.DisplayName"/>
 /// in <see cref="MagicSupport"/>.</param>
 public AssetWriterCollection(string displayName)
 {
     _writers = new MagicedCollection <IAssetWriter>(displayName);
 }
Exemple #2
0
 /// <summary>
 /// Creates a new instance of <see cref="AssetReaderCollection"/> class.
 /// </summary>
 /// <param name="displayName">The value of <see cref="IMagicSupport.DisplayName"/>
 /// in <see cref="MagicSupport"/>.</param>
 public AssetReaderCollection(string displayName)
 {
     _readers = new MagicedCollection <IAssetReader>(displayName);
 }