Show / Hide Table of Contents

Class JavascriptVariable

Class to wrap different types of javascript variables

Inheritance
Object
JavascriptVariable
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Namespace: Slipe.Client.Browsers
Assembly: SlipeClient.dll
Syntax
public class JavascriptVariable

Constructors

| Improve this Doc View Source

JavascriptVariable()

An empty js variable

Declaration
public JavascriptVariable()
| Improve this Doc View Source

JavascriptVariable(Boolean)

A js bool variable

Declaration
public JavascriptVariable(bool value)
Parameters
Type Name Description
Boolean value
| Improve this Doc View Source

JavascriptVariable(Int32)

A js integer variable

Declaration
public JavascriptVariable(int value)
Parameters
Type Name Description
Int32 value
| Improve this Doc View Source

JavascriptVariable(Object)

Any MTA variable cast to a json

Declaration
public JavascriptVariable(dynamic value)
Parameters
Type Name Description
Object value
| Improve this Doc View Source

JavascriptVariable(Single)

A js float variable

Declaration
public JavascriptVariable(float value)
Parameters
Type Name Description
Single value
| Improve this Doc View Source

JavascriptVariable(String)

A js string variable

Declaration
public JavascriptVariable(string value)
Parameters
Type Name Description
String value

Methods

| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
String
Overrides
Object.ToString()

Operators

| Improve this Doc View Source

Implicit(Boolean to JavascriptVariable)

Declaration
public static implicit operator JavascriptVariable(bool value)
Parameters
Type Name Description
Boolean value
Returns
Type Description
JavascriptVariable
| Improve this Doc View Source

Implicit(Int32 to JavascriptVariable)

Declaration
public static implicit operator JavascriptVariable(int value)
Parameters
Type Name Description
Int32 value
Returns
Type Description
JavascriptVariable
| Improve this Doc View Source

Implicit(Single to JavascriptVariable)

Declaration
public static implicit operator JavascriptVariable(float value)
Parameters
Type Name Description
Single value
Returns
Type Description
JavascriptVariable
| Improve this Doc View Source

Implicit(String to JavascriptVariable)

Declaration
public static implicit operator JavascriptVariable(string value)
Parameters
Type Name Description
String value
Returns
Type Description
JavascriptVariable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX