private void CreateFunctionExecution(object sender, EventArgs args) { pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11); TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution(apply); tvwCondition.Nodes.Add(node); _condition.Arguments.Add(apply); }
private void CreateFunctionExecutionFromFunction(object sender, EventArgs args) { TreeNodes.FunctionExecution func = (TreeNodes.FunctionExecution)tvwCondition.SelectedNode; pol.ApplyBaseReadWrite parentApply = func.ApplyBaseDefinition; pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11); TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution(apply); func.Nodes.Add(node); parentApply.Arguments.Add(apply); }
private void CreateFunctionExecutionFromFunction( object sender, EventArgs args ) { TreeNodes.FunctionExecution func = (TreeNodes.FunctionExecution)tvwCondition.SelectedNode; pol.ApplyBaseReadWrite parentApply = func.ApplyBaseDefinition; pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11); TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution( apply ); func.Nodes.Add( node ); parentApply.Arguments.Add( apply ); }
private void CreateFunctionExecution( object sender, EventArgs args ) { pol.ApplyElement apply = new pol.ApplyElement("urn:new_function", new pol.ExpressionReadWriteCollection(), Xacml.XacmlVersion.Version11); TreeNodes.FunctionExecution node = new TreeNodes.FunctionExecution( apply ); tvwCondition.Nodes.Add( node ); _condition.Arguments.Add( apply ); }