Table of Contents

Method DisconnectMatrixCrosspoint

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

DisconnectMatrixCrosspoint(int, string, string)

Disconnects the specified matrix crosspoint.

void DisconnectMatrixCrosspoint(int pid, string input, string output)

Parameters

pid int

The ID of the matrix write parameter.

input string

The label of the matrix input.

output string

The label of the matrix output.

DisconnectMatrixCrosspoint(int, int, int)

Disconnects the specified matrix crosspoint.

void DisconnectMatrixCrosspoint(int pid, int input, int output)

Parameters

pid int

The ID of the matrix write parameter.

input int

The index of the matrix input.

output int

The index of the matrix output.

Remarks

input must be in the range 1..nrOfInputs.

output must be in the range 1..nrOfOutputs.

DisconnectMatrixCrosspoint(string, int, int)

Disconnects the specified matrix crosspoint.

note

Please use an overload that takes the parameter ID instead to prevent issues in case the parameter Description changes.

[Obsolete("Use overloads with parameter ID instead of name.")]
void DisconnectMatrixCrosspoint(string name, int input, int output)

Parameters

name string

The name of the matrix parameter.

input int

The label of the matrix input.

output int

The label of the matrix output.

Remarks

The specified value for the name argument should be the value of the Description tag of the parameter and not the value of the Name tag.

DisconnectMatrixCrosspoint(string, string, string)

Connects the specified matrix crosspoint.

note

Please use an overload that takes the parameter ID instead to prevent issues in case the parameter Description changes.

[Obsolete("Use overloads with parameter ID instead of name.")]
void DisconnectMatrixCrosspoint(string name, string input, string output)

Parameters

name string

The name of the matrix parameter.

input string

The label of the matrix input.

output string

The label of the matrix output.

Remarks

The specified value for the name argument should be the value of the Description tag of the parameter and not the value of the Name tag.