Beispiel #1
0
 public DokanOperationProxy(IDokanOperations operations)
 {
     _operations   = operations;
     _serialNumber = (uint)_operations.GetHashCode();
 }
 public DokanOperationProxy(IDokanOperations operations)
 {
     _operations = operations;
     _serialNumber = (uint)_operations.GetHashCode();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DokanOperationProxy"/> class.
 /// </summary>
 /// <param name="operations">
 /// A <see cref="IDokanOperations"/> that contains the custom implementation of the driver.
 /// </param>
 /// <param name="logger">
 /// A <see cref="ILogger"/> that handle all logging.
 /// </param>
 public DokanOperationProxy(IDokanOperations operations, ILogger logger)
 {
     this.operations = operations;
     this.logger = logger;
     serialNumber = (uint)operations.GetHashCode();
 }