Util to get the value of a NDRField, ignoring arrays, pointers, etc.
(self, request)
| 1455 | raise |
| 1456 | |
| 1457 | def valueof(self, request): |
| 1458 | """ |
| 1459 | Util to get the value of a NDRField, ignoring arrays, pointers, etc. |
| 1460 | """ |
| 1461 | val = self |
| 1462 | for ndr_field in request.split("."): |
| 1463 | fld, fval = val.getfield_and_val(ndr_field) |
| 1464 | val = fld.valueof(val, fval) |
| 1465 | return val |
| 1466 | |
| 1467 | |
| 1468 | class _NDRAlign: |
no test coverage detected