你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PackageRemovedEventArgs<T> Class

  • java.lang.Object
    • system.fabric.PackageRemovedEventArgs<T>

Type Parameters

public class PackageRemovedEventArgs

Describes a package removed event.

Constructor Summary

Constructor Description
PackageRemovedEventArgs(T pkg)

Creates a new instance of the system.fabric.PackageRemovedEventArgs class.

Method Summary

Modifier and Type Method and Description
T getPackage()

Gets the code, data, or configuration package that was removed from the Service Manifest.

void setPackage(T pkg)

Sets the code, data, or configuration package that was removed from the Service Manifest.

Constructor Details

PackageRemovedEventArgs

public PackageRemovedEventArgs(T pkg)

Creates a new instance of the system.fabric.PackageRemovedEventArgs class.

Parameters:

pkg - Code, Config or Data package. See CodePackage, ConfigurationPackage and DataPackage.

Method Details

getPackage

public T getPackage()

Gets the code, data, or configuration package that was removed from the Service Manifest.

Returns:

Code, data, or configuration package that was removed from the Service Manifest.

setPackage

public void setPackage(T pkg)

Sets the code, data, or configuration package that was removed from the Service Manifest.

Parameters:

pkg - code, data, or configuration package that was removed from the Service Manifest.

Applies to