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

SetValueByIdentifier() public method

Sets the value for the OpenSearch parameter specified by its identifier.
public SetValueByIdentifier ( string identifier, string value ) : void
identifier string The parameter identifier, i.e. the fully qualified identifier between the curly brackets in the OpenSearch description URL template, e.g. "geo:box".
value string The value.
return void
        public void SetValueByIdentifier(string identifier, string value)
        {
            SetValuesByIdentifier(identifier, new string[] {value});
        }

Same methods

OpenSearchParameterValueSet::SetValueByIdentifier ( string namespaceUri, string localName, string value ) : void