CfVariableRef

Namespace: Chimayo.Ssis.Ast.ControlFlow

Reference to an SSIS variable

Record Fields

Record FieldDescription
name
Signature: string
namespace
Signature: string

Static members

Static memberDescription
create(ns name)
Signature: ns:string -> name:string -> CfVariableRef

Explicit constructor for CfVariableRef

fromString(value)
Signature: value:string -> CfVariableRef

Translates a string of the form '[namespace::]name' to an instance of CfVariableRef. If a namespace is not provided, the namespace 'User' is used.

getName(vr)
Signature: vr:CfVariableRef -> string

Retrieve the name from a CfVariableRef

getNamespace(vr)
Signature: vr:CfVariableRef -> string

Retrieve the namespace from a CfVariableRef

setName(name vr)
Signature: name:string -> vr:CfVariableRef -> CfVariableRef

Create a new CfVariableRef which differs only by name

setNamespace(ns vr)
Signature: ns:string -> vr:CfVariableRef -> CfVariableRef

Create a new CfVariableRef which differs only by namespace

toString(value)
Signature: value:CfVariableRef -> string

Translates a CfVariableRef to the form 'namespace::name'