INormalizeForIsolatedStorage.Normalize Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, returns a normalized copy of the object on which it is called.
public:
System::Object ^ Normalize();
public object Normalize ();
abstract member Normalize : unit -> obj
Public Function Normalize () As Object
Returns
A normalized object that represents the instance on which this method was called. This instance can be a string, stream, or any serializable object.
Notes to Implementers
When you override this method and the object returned is a stream, it is assumed to be serialized and is compared directly to the serialized form of the evidence used to create existing stores. If the object returned is a string, it is considered the name of an isolated store and compared to the names of the existing stores.
Notes to Callers
You typically call this method if you are writing a class derived from isolated storage and you need to check to see if isolated storage already exists for the current assembly.