System.Configuration.ClientSettingsStore.QuotaEnforcedStream.EnsureQuota C# (CSharp) 메소드

EnsureQuota() 개인적인 메소드

private EnsureQuota ( long size ) : void
size long
리턴 void
            private void EnsureQuota(long size) {
                IsolatedStoragePermission storagePerm = new IsolatedStorageFilePermission(PermissionState.None);
                storagePerm.UserQuota = size;
                storagePerm.UsageAllowed = _isRoaming? IsolatedStorageContainment.DomainIsolationByRoamingUser :
                                                       IsolatedStorageContainment.DomainIsolationByUser;
                storagePerm.Demand();
            }
        }