Terradue.OpenSearch.OpenSearchParameterValueSet.SetValueByIdentifier C# (CSharp) Method

SetValueByIdentifier() public method

Sets the value for the OpenSearch parameter specified by its identifier namespace URI and local name.
public SetValueByIdentifier ( string namespaceUri, string localName, string value ) : void
namespaceUri string The namespace URI part of the fully qualified identifier of this parameter as defined in the OpenSearch description URL template, e.g. "http://a9.com/-/opensearch/extensions/geo/1.0/".
localName string The local name part of the fully qualified identifier of this parameter as defined in the OpenSearch description URL template, e.g. "box".
value string The value.
return void
        public void SetValueByIdentifier(string namespaceUri, string localName, string value)
        {
            SetValuesByIdentifier(namespaceUri, localName, new string[] {value});
        }

Same methods

OpenSearchParameterValueSet::SetValueByIdentifier ( string identifier, string value ) : void