Class StringKeyValuePair
Inheritance
System.Object
StringKeyValuePair
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
public sealed class StringKeyValuePair : IKeyValuePair<string, string>, IEquatable<StringKeyValuePair>
Properties
|
Improve this Doc
View Source
Declaration
[Key]
public string Key { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Declaration
public string Value { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
Declaration
public bool Equals(StringKeyValuePair other)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
Declaration
public static List<StringKeyValuePair> FromDictionary(Dictionary<string, string> dictionary)
Parameters
Type |
Name |
Description |
System.Collections.Generic.Dictionary<System.String, System.String> |
dictionary |
|
Returns
|
Improve this Doc
View Source
Declaration
public override int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
Overrides
System.Object.GetHashCode()
Operators
|
Improve this Doc
View Source
Declaration
public static implicit operator StringKeyValuePair(KeyValuePair<string, string> kvp)
Parameters
Type |
Name |
Description |
System.Collections.Generic.KeyValuePair<System.String, System.String> |
kvp |
|
Returns
Implements
System.IEquatable<T>