Search Results for

    Show / Hide Table of Contents

    Class ApplicationScriptLog

    The log entry of the application script execution.

    Inheritance
    System.Object
    SerializableObject
    ApiDataObject
    ApplicationScriptLog
    Implements
    System.Xml.Serialization.IXmlSerializable
    Inherited Members
    ApiDataObject.ToString()
    ApiDataObject.Equals(Object)
    ApiDataObject.GetHashCode()
    ApiDataObject.Id
    ApiDataObject.Name
    ApiDataObject.Comment
    ApiDataObject.HistoryUserName
    ApiDataObject.HistoryUserDisplayName
    ApiDataObject.HistoryDateTime
    SerializableObject.GetSchema()
    SerializableObject.ReadXml(XmlReader)
    SerializableObject.ClearSerializationHistory()
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: VMS.TPS.Common.Model.API
    Assembly: VMS.TPS.Common.Model.API.dll
    Syntax
    public class ApplicationScriptLog : ApiDataObject, IXmlSerializable

    Properties

    CourseId

    The identifier of the course that was modified by the script.

    Declaration
    public string CourseId { get; }
    Property Value
    Type Description
    System.String

    PatientId

    The identifier of the patient that was modified by the script.

    Declaration
    public string PatientId { get; }
    Property Value
    Type Description
    System.String

    PlanSetupId

    The identifier of the plan that was modified by the script, or an empty string if the script did not modify the plan.

    Declaration
    public string PlanSetupId { get; }
    Property Value
    Type Description
    System.String

    PlanUID

    The DICOM UID of the plan that was modified by the script, or an empty string if the script did not modify the plan.

    Declaration
    public string PlanUID { get; }
    Property Value
    Type Description
    System.String

    Script

    The script that modified the plan or structure set.

    Declaration
    public ApplicationScript Script { get; }
    Property Value
    Type Description
    ApplicationScript

    ScriptFullName

    The full name of the script assembly that modified the plan or structure set. A System.Reflection.AssemblyName object can be created from the string.

    Declaration
    public string ScriptFullName { get; }
    Property Value
    Type Description
    System.String

    StructureSetId

    The identifier of the structure set that was modified by the script, or an empty string if the script did not modify the structure set.

    Declaration
    public string StructureSetId { get; }
    Property Value
    Type Description
    System.String

    StructureSetUID

    The DICOM UID of the structure set that was modified by the script, or an empty string if the script did not modify the structure set.

    Declaration
    public string StructureSetUID { get; }
    Property Value
    Type Description
    System.String

    Methods

    WriteXml(XmlWriter)

    Converts an object into its XML representation. For more information on how to serialize an object into an XML document, see System.Xml.Serialization.XmlSerializer.

    Declaration
    public override void WriteXml(XmlWriter writer)
    Parameters
    Type Name Description
    System.Xml.XmlWriter writer

    The System.Xml.XmlWriter stream, to which the object is serialized.

    Overrides
    ApiDataObject.WriteXml(XmlWriter)

    Implements

    System.Xml.Serialization.IXmlSerializable
    In This Article
    Back to top