Class NameValueProvider
Provides access to static, preconfigured instances of INameValueProvider
Inheritance
Object
NameValueProvider
Implements
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: OfficeOpenXml.FormulaParsing
Assembly: EPPlus.dll
Syntax
public class NameValueProvider : INameValueProvider
Properties
Empty
An empty INameValueProvider
Declaration
public static INameValueProvider Empty { get; }
Property Value
| Type | Description |
|---|---|
| INameValueProvider |
Methods
GetNamedValue(String)
Implementation of the GetNamedValue function. In this case (Empty provider) it always return null.
Declaration
public object GetNamedValue(string key)
Parameters
| Type | Name | Description |
|---|---|---|
| String | key |
Returns
| Type | Description |
|---|---|
| Object |
GetNamedValue(String, String)
Get named value
Declaration
public object GetNamedValue(string key, string worksheet)
Parameters
| Type | Name | Description |
|---|---|---|
| String | key | |
| String | worksheet |
Returns
| Type | Description |
|---|---|
| Object |
IsNamedValue(String, String)
Implementation of the IsNamedValue function. In this case (Empty provider) it always return false.
Declaration
public bool IsNamedValue(string key, string worksheet)
Parameters
| Type | Name | Description |
|---|---|---|
| String | key | |
| String | worksheet |
Returns
| Type | Description |
|---|---|
| Boolean |
Reload()
Implementation of the Reload function
Declaration
public void Reload()