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

Syntax

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

/** property */
public void set_Body(string value);
JScript
public function get Body() : String

public function set Body(value : String);

See Also