dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Model
AttachmentEdit Class
AttachmentEdit represents an attachment that can be added, updated or deleted via applyEdits. This object can be either pre-uploaded data or base 64 encoded data.
ArcGIS Maps SDK for JavaScript
public class AttachmentEdit :
System.IEquatable<dymaptic.GeoBlazor.Core.Model.AttachmentEdit>
Inheritance System.Object š” AttachmentEdit
Implements System.IEquatable<AttachmentEdit>
Constructors
AttachmentEdit(Graphic, Attachment) Constructor
Construct an AttachmentEdit from a Graphic āFeatureā and its Attachment.
public AttachmentEdit(dymaptic.GeoBlazor.Core.Components.Graphic feature, dymaptic.GeoBlazor.Core.Model.Attachment attachment);
Parameters
feature
Graphic
attachment
Attachment
AttachmentEdit(ObjectId, Attachment) Constructor
Construct an AttachmentEdit from a Featureās objectId
and its Attachment.
public AttachmentEdit(dymaptic.GeoBlazor.Core.Model.ObjectId objectId, dymaptic.GeoBlazor.Core.Model.Attachment attachment);
Parameters
objectId
ObjectId
attachment
Attachment
AttachmentEdit(string, Attachment) Constructor
Construct an AttachmentEdit from a Featureās globalId
and its Attachment.
public AttachmentEdit(string globalId, dymaptic.GeoBlazor.Core.Model.Attachment attachment);
Parameters
globalId
System.String
attachment
Attachment
Properties
AttachmentEdit.Attachment Property
The attachment to be added, updated or deleted.
public dymaptic.GeoBlazor.Core.Model.Attachment Attachment { get; set; }
Property Value
AttachmentEdit.Feature Property
The feature of feature associated with the attachment.
public dymaptic.GeoBlazor.Core.Components.Graphic? Feature { get; set; }
Property Value
AttachmentEdit.GlobalId Property
The globalId
of the feature associated with the attachment.
public string? GlobalId { get; set; }
Property Value
AttachmentEdit.ObjectId Property
The objectId
of the feature associated with the attachment.
public dymaptic.GeoBlazor.Core.Model.ObjectId? ObjectId { get; set; }