IsolatedStorageScope.Domain : IsolatedStorageScope « System.IO.IsolatedStorage « VB.Net by API






IsolatedStorageScope.Domain

  
Imports System.IO.IsolatedStorage
        
Public Class Tester
    Public Shared Sub Main

        Dim myIsoStore As IsolatedStorageFile

        Dim myISS As IsolatedStorageScope
        Try
            myISS = IsolatedStorageScope.Domain Or IsolatedStorageScope.Assembly Or IsolatedStorageScope.User
            myIsoStore = IsolatedStorageFile.GetStore(myISS, Nothing, Nothing)

        Catch ex As IsolatedStorageException
            Console.WriteLine(ex.Message)
        End Try
    End Sub
End Class

   
    
  








Related examples in the same category

1.IsolatedStorageScope.Assembly