Microsoft.Azure.Commands.StreamAnalytics.GetAzureStreamAnalyticsTransformationCommand.ExecuteCmdlet C# (CSharp) Method

ExecuteCmdlet() private method

private ExecuteCmdlet ( ) : void
return void
        public override void ExecuteCmdlet()
        {
            if (ResourceGroupName != null && string.IsNullOrWhiteSpace(ResourceGroupName))
            {
                throw new PSArgumentNullException("ResourceGroupName");
            }

            if (JobName != null && string.IsNullOrWhiteSpace(JobName))
            {
                throw new PSArgumentNullException("JobName");
            }

            if (Name != null && string.IsNullOrWhiteSpace(Name))
            {
                throw new PSArgumentNullException("Name");
            }

            WriteObject(StreamAnalyticsClient.GetTransformation(ResourceGroupName, JobName, Name));
        }
    }
GetAzureStreamAnalyticsTransformationCommand