Ejemplo n.º 1
0
        /// <inheritdoc />
        public void CopyAllValuesTo(IPropertiesBuffer destination)
        {
            if (destination == null)
            {
                throw new ArgumentNullException(nameof(destination));
            }

            lock (_syncRoot)
            {
                _storage.CopyAllValuesTo(destination);
            }
        }
Ejemplo n.º 2
0
 public void GetAllProperties(IPropertiesBuffer destination)
 {
     _properties.CopyAllValuesTo(destination);
 }