Class BarcodeSplittedDocumentController
Interface for working with temporary, splitted documents
Inheritance
System.Object
BarcodeSplittedDocumentController
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Extension.Barcode
Assembly: Simplic.Framework.Extension.dll
Syntax
public static class BarcodeSplittedDocumentController
Methods
| Improve this Doc View SourceAdd(String, Guid, Byte[])
Save a blob in the splitted document table for processing in the simplic server
Declaration
public static Guid Add(string barcode, Guid validationSource, byte[] blob)
Parameters
Type | Name | Description |
---|---|---|
System.String | barcode | Barcode string |
System.Guid | validationSource | Source which validated the barcode |
System.Byte[] | blob | Blob instance as byte-array |
Returns
Type | Description |
---|---|
System.Guid | Id of the temp blob id |
GetAll()
Read all splitted documents
Declaration
public static IList<Barcode_SplittedDocument> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<Barcode_SplittedDocument> | Document entries |
ReadAll()
Read all splitted documents
Declaration
public static IList<Barcode_SplittedDocument> ReadAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<Barcode_SplittedDocument> | Document entries |
Remove(Guid, Boolean)
Remove blob from splitted document table
Declaration
public static void Remove(Guid tempBlobId, bool removeBlob = true)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | tempBlobId | Unique id of the blob |
System.Boolean | removeBlob | Remove blob from database too |