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

Syntax

Visual Basic (Declaration)
Public MustOverride Function EncodeContentForWeb( _ 
   ByVal Source As String,  _ 
   Optional ByVal ContextContentName As String = "",  _ 
   Optional ByVal ContextRecordID As Integer = 0,  _ 
   Optional ByVal WrapperID As Integer = 0 _ 
) As String
C#
public abstract string EncodeContentForWeb(
   string Source,
   [OptionalAttribute] string ContextContentName,
   [OptionalAttribute] int ContextRecordID,
   [OptionalAttribute] int WrapperID
)
C++
public:
 String EncodeContentForWeb(
   String Source,
   [OptionalAttribute] String ContextContentName,
   [OptionalAttribute] int ContextRecordID,
   [OptionalAttribute] int WrapperID
) abstract 
J#
public abstract string EncodeContentForWeb(
   string Source,
   /** @attribute OptionalAttribute() */ string ContextContentName,
   /** @attribute OptionalAttribute() */ int ContextRecordID,
   /** @attribute OptionalAttribute() */ int WrapperID
)
JScript
public abstract  function EncodeContentForWeb(
   Source : String,
   OptionalAttribute ContextContentName : String,
   OptionalAttribute ContextRecordID : int,
   OptionalAttribute WrapperID : int
) : String

See Also