Skip to content

Commit 7261ba1

Browse files
Updated for maui 11.4.1200
1 parent 6d416e4 commit 7261ba1

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

programming/maui/api-reference/barcode-result-item.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class BarcodeResultItem extends CapturedResultItem
3636
| [`ModuleSize`](#modulesize) | *int* | Get the module size of the barcode. |
3737
| [`IsDPM`](#isdpm) | *bool* | Check whether the barcode is a DPM barcode. |
3838
| [`IsMirrored`](#ismirrored) | *bool* | Check whether the barcode is mirrored. |
39-
| [`ECISegments`](#ecisegments) | *IList<ECISegment\>?* | The ECI segments of the decoded barcode. |
39+
| [`ECISegments`](#ecisegments) | *ECISegment[]?* | The ECI segments of the decoded barcode. |
4040

4141
The following properties are inherited from class [`CapturedResultItem`]({{ site.dcvb_maui_api }}core/captured-result-item.html).
4242

@@ -131,7 +131,7 @@ bool IsMirrored { get; }
131131
The Extended Channel Interpretation (ECI) segments of the decoded barcode. Each ECI segment specifies the character encoding used for a portion of the decoded bytes.
132132

133133
```csharp
134-
IList<ECISegment>? EciSegments { get; set; }
134+
ECISegment[]? EciSegments { get; }
135135
```
136136

137137
**Remarks**

programming/maui/api-reference/eci-segment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,29 +36,29 @@ class ECISegment
3636
The ECI assignment number as defined by ISO/IEC 15424. This value identifies the character set encoding used in this segment.
3737

3838
```csharp
39-
int EciValue { get; set; }
39+
int EciValue { get; }
4040
```
4141

4242
### CharsetEncoding
4343

4444
The charset encoding name defined by IANA (e.g. "UTF-8", "ISO-8859-1"). This specifies the character encoding scheme used to interpret the bytes in this segment.
4545

4646
```csharp
47-
string CharsetEncoding { get; set; }
47+
string CharsetEncoding { get; }
4848
```
4949

5050
### StartIndex
5151

5252
The start index of this ECI segment in the decoded barcode bytes. This indicates the position where this segment begins within the overall decoded byte sequence.
5353

5454
```csharp
55-
int StartIndex { get; set; }
55+
int StartIndex { get; }
5656
```
5757

5858
### Length
5959

6060
The length (in bytes) of this segment within the decoded barcode bytes. This specifies how many bytes in the decoded data belong to this ECI segment.
6161

6262
```csharp
63-
int Length { get; set; }
63+
int Length { get; }
6464
```

programming/maui/user-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ noTitleIndex: true
6060

6161
### Visual Studio for Mac
6262

63-
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select Version **11.2.5000** and click **install**.
63+
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select Version **11.4.1200** and click **install**.
6464

6565
### Visual Studio for Windows
6666

@@ -73,7 +73,7 @@ You need to add the library via the project file and complete additional steps f
7373
...
7474
<ItemGroup>
7575
...
76-
<PackageReference Include="Dynamsoft.BarcodeReaderBundle.Maui" Version="11.2.5000" />
76+
<PackageReference Include="Dynamsoft.BarcodeReaderBundle.Maui" Version="11.4.1200" />
7777
</ItemGroup>
7878
</Project>
7979
```

0 commit comments

Comments
 (0)