DockerSdk
the .NET SDK for Docker
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 1234]
 NDockerSdk
 NBuilders
 CBuilderProvides functionality to build Docker images
 CBuildOptionsSpecifies how to build an image
 CDockerImageBuildExceptionIndicates that an image build operation failed
 CIBundleEncapsulates the data context needed for Docker build methods
 NContainers
 NEvents
 CContainerCreatedEventRepresents a notification of the creation of a new container. It will be at the ContainerStatus.Created state
 CContainerDeletedEventRepresents a notification that the container has been deleted
 CContainerEventRepresents an event emitted by the Docker daemon about a container
 CContainerExitedEventIndicates that the container's main process has exited. This is a transition to the ContainerStatus.Exited state (such as from the ContainerStatus.Running of ContainerStatus.Paused state). If the process shut down due to a "stop" or "restart" command (as opposed to a "kill" command), Docker will also emit ContainerStopCompletedEvent
 CContainerPausedEventIndicates that the container has transitioned from the ContainerStatus.Running state to the ContainerStatus.Paused state. The container's process is simply not given any CPU time until it is unpaused
 CContainerRestartCompletedEvent
 CContainerSignalledEventIndicates that Docker has sent a signal to the container. Typically this is used to either ask the container's process to shut down or to force the container to end the process. It does not represent a state change, but may cause one
 CContainerStartedEventRepresents a notice that the container has begun its main process, transitioning to the ContainerStatus.Running state. The container might previously been in the ContainerStatus.Exited or ContainerStatus.Created state. Restart commands also issue this event in the second half of their action
 CContainerStopCompletedEvent
 CContainerUnpausedEvent
 CContainerAccessProvides access to functionality involving Docker containers
 CContainerNotFoundExceptionIndicates that no Docker container with the given name is known to the Docker daemon
 CCreateContainerOptionsSettings for how to create a container and how it should behave
 CIContainerRepresents a Docker container
 CIContainerInfoHolds detailed information about a Docker container
 CListContainersOptionsFilters for container listings
 NEvents
 CEventRepresents a Docker event
 CIEventLowLevelRepresents an event emitted by the Docker daemon. This is similar to Event, but in a less-processed form
 NImages
 NEvents
 CImageDeletedEventRepresents a notification of the deletion of an image
 CImageEventRepresents an event emitted by the Docker daemon about a container
 CImageLoadedEventRepresents a notification of an image being loaded from a file or stream
 CImagePulledEventRepresents a notification of the creation of a new image
 CImagePushedEventRepresents a notification of a local image being pushed to a registry
 CImageSavedEventRepresents a notification of a local image being saved to a file or stream
 CImageTaggedEventRepresents a notification that a tag has been removed from a local image
 CImageUntaggedEventRepresents a notification that a tag has been removed from a local image
 CIImageRepresents a Docker image, which is a read-only template for creating containers
 CIImageInfo
 CImageAccessProvides methods for interacting with Docker images
 CImageNotFoundExceptionIndicates that the Docker daemon could not find the indicated image where it was looking
 CImageNotFoundLocallyExceptionIndicates that the Docker daemon does not have a local copy of the indicated image
 CImageNotFoundRemotelyExceptionIndicates that the indicated image does not exist at the Docker registry its name indicates
 CListImagesOptionsSpecifies how to list images
 NNetworks
 NEvents
 CNetworkAttachedEventIndicates that the network has been attached to a container
 CNetworkCreatedEventRepresents a notification of the creation of a new Docker network resource
 CNetworkDeletedEventRepresents a notification that the network has been deleted
 CNetworkDetachedEventIndicates that the network has been detached from a container
 CNetworkEventRepresents an event emitted by the Docker daemon about a network
 CAttachNetworkOptionsOptions for how to attach a Docker network to a Docker container
 CINetworkRepresents a Docker network
 CINetworkEndpointProvides information about a Docker network endpoint. An endpoint is a connection between a Docker container and a Docker network
 CINetworkInfoProvides detailed information about a Docker network
 CListNetworksOptionsSpecifies how to list images
 CNetworkAccessProvides methods for interacting with Docker networks
 CNetworkNotFoundExceptionIndicates that no Docker network with the given name is known to the Docker daemon
 NRegistries
 CRegistryAccessCaches credentials for Docker registries and provides a means to check the credentials against the registry
 CRegistryAuthExceptionRepresents a failure to authenticate with a Docker registry
 CClientOptionsSpecifies where to find a Docker daemon and how the SDK should connect to it
 CDaemonNotFoundExceptionIndicates that the Docker daemon is not present or not running
 CDockerClientProvides remote access to a Docker daemon
 CDockerExceptionBase class for exceptions that are specific to the Docker client's functionality
 CDockerVersionExceptionIndicates that API version negotiation failed because there is no overlap between the versions that the SDK supports with the versions the Docker daemon supports
 CMalformedReferenceExceptionIndicates that the given string is not in the expected format. This exception applies to references to Docker resources
 CResourceNotFoundExceptionIndicates that the Docker daemon could not find the indicated Docker resource