Table of Contents

Class EventObject

Namespace
ActivityPub.Types.AS.Extended.Object
Assembly
ActivityPub.Types.dll

Represents any kind of event.

public class EventObject : ASObject, IASModel<ASType, ASTypeEntity>, IASModel<ASType>, IASModel<ASObject, ASObjectEntity, ASType>, IASModel<ASObject, ASObjectEntity>, IASModel<ASObject>, IASModel<EventObject, EventObjectEntity, ASObject>, IASModel<EventObject, EventObjectEntity>, IASModel<EventObject>
Inheritance
EventObject
Implements
Inherited Members

Constructors

EventObject()

Constructs a new instance and attaches it to a new, empty type graph.

public EventObject()

EventObject(ASType)

Constructs a new instance and extends an existing type graph from a provided model.

public EventObject(ASType existingGraph)

Parameters

existingGraph ASType
See Also
Extend<TModel, TEntity>()

EventObject(TypeMap, EventObjectEntity?)

public EventObject(TypeMap typeMap, EventObjectEntity? entity)

Parameters

typeMap TypeMap
entity EventObjectEntity

EventObject(TypeMap, bool)

Constructs a new instance from an existing type graph. The existing graph is either extended or wrapped, depending on the value of

isExtending
public EventObject(TypeMap typeMap, bool isExtending = true)

Parameters

typeMap TypeMap
isExtending bool

Remarks

All overrides MUST call this using

base(typeMap, false)

Exceptions

InvalidOperationException

If

extendGraph
is true and the entity type already exists in the graph
InvalidOperationException

If

extendGraph
is true and the entity requires another entity that is missing from the graph
InvalidCastException

If

extendGraph
is false and the object is not of type
TEntity
See Also
ProjectTo<TModel, TEntity>(bool)

Fields

EventType

ActivityStreams type name for "Event" types.

[PublicAPI]
public const string EventType = "Event"

Field Value

string

Properties

Entity

private EventObjectEntity Entity { get; }

Property Value

EventObjectEntity

Explicit Interface Implementations

IASModel<EventObject>.ASTypeName

AS type name of this entity. For the full list of names in the object graph, use ASTypes.

static string IASModel<EventObject>.ASTypeName { get; }

Returns

string

IASModel<EventObject>.FromGraph(TypeMap)

Constructs an instance from this type from a pre-populated type graph. The provided TypeMap instance is guaranteed to include an instance of type EntityType.

static EventObject IASModel<EventObject>.FromGraph(TypeMap typeMap)

Parameters

typeMap TypeMap

Returns

EventObject