Skip to main content

Class NamedConnectionReferenceContext

Context for a named connection reference. This is used to reference a named connection in the connection info collection.

Attributes:

name (str): The name of the connection reference. This should map to known named connections in the connection info collection.

storage_type (StorageType_): The storage type of the connection reference

attributes (dict[str, Any]): The attributes of the connection reference. This is expected to never be filled out.

Notes:

This object is used to avoid directly storing connection credentials in file metadata and other database locations.

Namespace: Workspace.XBR.Xperiflow.Core.RestApi.Storage

Assembly: Xperiflow.dll

Declaration
public class NamedConnectionReferenceContext

Properties

Name

Declaration
[JsonProperty("name", Required = Required.Always)]
public string Name { get; set; }

StorageType

Declaration
[JsonProperty("storage_type", Required = Required.Always)]
public string StorageType { get; set; }

Attributes

Declaration
[JsonProperty("attributes", Required = Required.Always)]
public JObject Attributes { get; set; }

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Methods

ToJson()

Declaration
public string ToJson()
Returns

System.String

FromJson(string)

Declaration
public static NamedConnectionReferenceContext FromJson(string data)
Returns

Workspace.XBR.Xperiflow.Core.RestApi.Storage.NamedConnectionReferenceContext

Parameters
TypeName
System.Stringdata

Inherited Members

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?