Table of Contents

Constructor AppPackageProtocolBuilder

Namespace
Skyline.AppInstaller
Assembly
Skyline.DataMiner.Core.AppPackageCreator.dll

AppPackageProtocolBuilder(string, string, string)

Initializes a new instance of the AppPackageProtocol.AppPackageProtocolBuilder class using the specified name, version and protocol file.

public AppPackageProtocolBuilder(string name, string version, string protocolFilePath)

Parameters

name string

The protocol name.

version string

The protocol version.

protocolFilePath string

The protocol file path.

Exceptions

ArgumentNullException

name, version or protocolFilePath is null.

ArgumentException

name, version or protocolFilePath is empty or white space or the file does not exist.

AppPackageProtocolBuilder(string, string, byte[])

Initializes a new instance of the AppPackageProtocol.AppPackageProtocolBuilder class using the specified name, version and protocol file.

public AppPackageProtocolBuilder(string name, string version, byte[] protocolContent)

Parameters

name string

The protocol name.

version string

The protocol version.

protocolContent byte[]

The protocol content.

Exceptions

ArgumentNullException

name, version or protocolContent is null.

ArgumentException

name or version is empty or white space.