In Cryptograph, I read some explanation about Exclusive-Or operation in Galois Field.
The five properties of the exclusive-or operation in the $GF(2^n)$ field makes this operation a very interesting component for use in a block cipher: closure, associativity, commutativity, existence of identity, and existence of inverse.
I learned what $GF(2^n)$ is, but I cannot understand the meaning of these properties.
What these properties mean?
I. Block cipher (slide source):

II. Exclusive or:
The other properties for one (unknow) element $X$:
III. XOR block cipher:
Closure: The field's addition operation of $GF(2)$ is corresponds to the logical XOR operation of 2 inputs
Associativity: Here for $GF(8)$: $$(A\oplus B)\oplus C= A\oplus (B \oplus C)=(A\oplus C )\oplus B $$
Communatativity: Short: it's true (table in point II. Also: $GF(4)$)
Question: Does exist an element $E_1$ where: $E_1\oplus X\iff X\oplus E_1 = X$ ? Answer: Yes, for $E_1=0$
IV. Summary:
XOR- This is sometimes thought of as "one or the other but not both". This could be written as "A or B, but not, A and B".
The field's addition operation for $GF(2^n)$ till each element equal $0$ or $1$ is corresponds to the logical XOR operation.