Namespace: Contensive.BaseClasses
Assembly: CPBase (in CPBase.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Property Content As String
C#
public abstract string Content { get; set; }
C++
public abstract property string Content abstract  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_Content();

/** property */
public void set_Content(string value);
JScript
public function get Content() : String

public function set Content(value : String);

See Also