Microsoft.Azure.Commands.Batch.Models.DownloadRemoteDesktopProtocolFileOptions.DownloadRemoteDesktopProtocolFileOptions C# (CSharp) Метод

DownloadRemoteDesktopProtocolFileOptions() публичный Метод

public DownloadRemoteDesktopProtocolFileOptions ( BatchAccountContext context, string poolId, string computeNodeId, PSComputeNode computeNode, string destinationPath, Stream stream, IEnumerable additionalBehaviors = null ) : Microsoft.Azure.Batch
context BatchAccountContext
poolId string
computeNodeId string
computeNode PSComputeNode
destinationPath string
stream Stream
additionalBehaviors IEnumerable
Результат Microsoft.Azure.Batch
        public DownloadRemoteDesktopProtocolFileOptions(BatchAccountContext context, string poolId, string computeNodeId, PSComputeNode computeNode, string destinationPath,
            Stream stream, IEnumerable<BatchClientBehavior> additionalBehaviors = null) : base(context, poolId, computeNodeId, computeNode, additionalBehaviors)
        {
            if (string.IsNullOrWhiteSpace(destinationPath) && stream == null)
            {
                throw new ArgumentNullException(Resources.NoDownloadDestination);
            }

            this.DestinationPath = destinationPath;
            this.Stream = stream;
        }
DownloadRemoteDesktopProtocolFileOptions