Struct EncodedString
  
  The EXIF encoded string structure.
Assembly: SixLabors.ImageSharp.dll
  
  
    public readonly struct EncodedString : IEquatable<EncodedString>
   
  Constructors
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public EncodedString(EncodedString.CharacterCode code, string text)
   
  Parameters
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Initializes a new instance of the EncodedString struct.
Default use Unicode character code.
Declaration
  
    public EncodedString(string text)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | text | The text value. | 
    
  
  Properties
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public readonly EncodedString.CharacterCode Code { get; }
   
  Property Value
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Text
  
  
  Declaration
  
    public readonly string Text { get; }
   
  Property Value
  
  Methods
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public readonly bool Equals(EncodedString other)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public override readonly bool Equals(object obj)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Object | obj |  | 
    
  
  Returns
  
  Overrides
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public override readonly int GetHashCode()
   
  Returns
  
  Overrides
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public override readonly string ToString()
   
  Returns
  
  Overrides
  
  Operators
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  
  
  Declaration
  
    public static explicit operator string (EncodedString encodedString)
   
  Parameters
  
  Returns
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  
  Converts the specified String to an instance of this type.
Declaration
  
    public static implicit operator EncodedString(string text)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | text | The text value. | 
    
  
  Returns
  
  Implements