Class SharedObjectPublishedEventArgs
Information passed in the SharedObjectPublished event.
Inherited Members
Namespace: Sdl.FileTypeSupport.Framework.NativeApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public class SharedObjectPublishedEventArgs : EventArgs
Constructors
SharedObjectPublishedEventArgs(string, object)
Creates with the id and the object instance.
Declaration
public SharedObjectPublishedEventArgs(string id, object sharedObject)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | |
| object | sharedObject |
Properties
Id
Id used to publish the object
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SharedObject
Instance of the published object
Declaration
public object SharedObject { get; set; }
Property Value
| Type | Description |
|---|---|
| object |