Ejemplo n.º 1
0
		public BinaryResourceFormat(
			IResourceManager resourceManager, IComponentContext context, IResourceErrorHandler errorHandler)
		{
			this.resourceManager = resourceManager;
			this.context = context;
			this.errorHandler = errorHandler;
		}
Ejemplo n.º 2
0
		public ResourceFile(
			IResourceManager resourceManager,
			string filePath,
			IEnumerable<IResourceFileFormat> readers,
			IResourceErrorHandler errorHandler)
		{
			this.resourceManager = resourceManager;
			this.filePath = filePath;
			this.readers = readers;
			this.errorHandler = errorHandler;
			this.context = this.context;
		}