---
title: writeWithoutResponse
framework: corebluetooth
role: symbol
role_heading: Type Property
path: corebluetooth/cbcharacteristicproperties/writewithoutresponse
---

# writeWithoutResponse

A property that indicates a peripheral can write the characteristic’s value, without a response to indicate that the write succeeded.

## Declaration

```swift
static var writeWithoutResponse: CBCharacteristicProperties { get }
```

## Discussion

Discussion Use the writeValue(_:for:type:) method of the CBPeripheral class to write to a characteristic’s value, using the CBCharacteristicWriteType.withoutResponse constant as the parameter for type. If a characteristic has this property set, it doesn’t return an error to the central when it fails to write the characteristic’s value.

## See Also

### Characteristic Properties

- [broadcast](corebluetooth/cbcharacteristicproperties/broadcast.md)
- [read](corebluetooth/cbcharacteristicproperties/read.md)
- [write](corebluetooth/cbcharacteristicproperties/write.md)
- [notify](corebluetooth/cbcharacteristicproperties/notify.md)
- [indicate](corebluetooth/cbcharacteristicproperties/indicate.md)
- [authenticatedSignedWrites](corebluetooth/cbcharacteristicproperties/authenticatedsignedwrites.md)
- [extendedProperties](corebluetooth/cbcharacteristicproperties/extendedproperties.md)
- [notifyEncryptionRequired](corebluetooth/cbcharacteristicproperties/notifyencryptionrequired.md)
- [indicateEncryptionRequired](corebluetooth/cbcharacteristicproperties/indicateencryptionrequired.md)
