internal PSEnvironmentSetting(Microsoft.Azure.Batch.IEnvironmentSetting omObject) { if ((omObject == null)) { throw new System.ArgumentNullException("omObject"); } this.omObject = omObject; }
public PSEnvironmentSetting(string name, string value) { this.omObject = new Microsoft.Azure.Batch.EnvironmentSetting(name, value); }