/// <inheritdoc /> public void CopyAllValuesTo(IPropertiesBuffer destination) { if (destination == null) { throw new ArgumentNullException(nameof(destination)); } lock (_syncRoot) { _storage.CopyAllValuesTo(destination); } }
public void GetAllProperties(IPropertiesBuffer destination) { _properties.CopyAllValuesTo(destination); }