-
-
Notifications
You must be signed in to change notification settings - Fork 0
localizationshared CultureChangedMessage
Denis Akopyan edited this page Jul 10, 2025
·
1 revision
Message for notifying about a culture change
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Localization.Shared
Localization.Shared.CultureChangedMessage[[CultureChangedMessage]]
end
subgraph System
System.IEquatable_1[[IEquatable]]
end
System.IEquatable_1 --> Localization.Shared.CultureChangedMessage
| Type | Name | Methods |
|---|---|---|
string |
ValueValue of the new culture |
get, init |
| Returns | Name |
|---|---|
bool |
Equals(...) |
int |
GetHashCode() |
string |
ToString() |
| Returns | Name |
|---|---|
bool |
operator !=(CultureChangedMessage left, CultureChangedMessage right) |
bool |
operator ==(CultureChangedMessage left, CultureChangedMessage right) |
Message for notifying about a culture change
-
IEquatable<CultureChangedMessage>
public CultureChangedMessage(string Value)| Type | Name | Description |
|---|---|---|
string |
Value | Value of the new culture |
Message for notifying about a culture change
public override string ToString()public static bool operator !=(CultureChangedMessage left, CultureChangedMessage right)| Type | Name | Description |
|---|---|---|
CultureChangedMessage |
left | |
CultureChangedMessage |
right |
public static bool operator ==(CultureChangedMessage left, CultureChangedMessage right)| Type | Name | Description |
|---|---|---|
CultureChangedMessage |
left | |
CultureChangedMessage |
right |
public override int GetHashCode()public override bool Equals(object obj)| Type | Name | Description |
|---|---|---|
object |
obj |
public virtual bool Equals(CultureChangedMessage other)| Type | Name | Description |
|---|---|---|
CultureChangedMessage |
other |
public string Value { get; init; }Value of the new culture
Generated with ModularDoc