Table of Contents

Class ServiceActor

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

Represents a service of any kind.

public class ServiceActor : APActor, IASModel<ASType, ASTypeEntity>, IASModel<ASType>, IASModel<ASObject, ASObjectEntity, ASType>, IASModel<ASObject, ASObjectEntity>, IASModel<ASObject>, IASModel<APActor, APActorEntity, ASObject>, IASModel<APActor, APActorEntity>, IASModel<APActor>, IASModel<ServiceActor, ServiceActorEntity, APActor>, IASModel<ServiceActor, ServiceActorEntity>, IASModel<ServiceActor>
Inheritance
ServiceActor
Implements
Inherited Members

Constructors

ServiceActor()

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

public ServiceActor()

ServiceActor(ASType)

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

public ServiceActor(ASType existingGraph)

Parameters

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

ServiceActor(TypeMap, ServiceActorEntity?)

public ServiceActor(TypeMap typeMap, ServiceActorEntity? entity)

Parameters

typeMap TypeMap
entity ServiceActorEntity

ServiceActor(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 ServiceActor(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

ServiceType

ActivityStreams type name for "Service" types.

[PublicAPI]
public const string ServiceType = "Service"

Field Value

string

Properties

Entity

private ServiceActorEntity Entity { get; }

Property Value

ServiceActorEntity

Explicit Interface Implementations

IASModel<ServiceActor>.ASTypeName

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

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

Returns

string

IASModel<ServiceActor>.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 ServiceActor IASModel<ServiceActor>.FromGraph(TypeMap typeMap)

Parameters

typeMap TypeMap

Returns

ServiceActor