Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / IO / IsolatedStorage / IsolatedStorageSecurityState.cs / 1305376 / IsolatedStorageSecurityState.cs
using System.Security;
namespace System.IO.IsolatedStorage {
public enum IsolatedStorageSecurityOptions {
#if FEATURE_CORECLR
GetRootUserDirectory = 0,
GetGroupAndIdForApplication = 1,
GetGroupAndIdForSite = 2,
IncreaseQuotaForGroup = 3,
#endif // FEATURE_CORECLR
IncreaseQuotaForApplication = 4
}
[SecurityCritical]
public class IsolatedStorageSecurityState : SecurityState {
private Int64 m_UsedSize;
private Int64 m_Quota;
#if FEATURE_CORECLR
private string m_Id;
private string m_Group;
private string m_RootUserDirectory;
#endif // FEATURE_CORECLR
private IsolatedStorageSecurityOptions m_Options;
#if FEATURE_CORECLR
internal static IsolatedStorageSecurityState CreateStateToGetRootUserDirectory() {
IsolatedStorageSecurityState state = new IsolatedStorageSecurityState();
state.m_Options = IsolatedStorageSecurityOptions.GetRootUserDirectory;
return state;
}
internal static IsolatedStorageSecurityState CreateStateToGetGroupAndIdForApplication() {
IsolatedStorageSecurityState state = new IsolatedStorageSecurityState();
state.m_Options = IsolatedStorageSecurityOptions.GetGroupAndIdForApplication;
return state;
}
internal static IsolatedStorageSecurityState CreateStateToGetGroupAndIdForSite() {
IsolatedStorageSecurityState state = new IsolatedStorageSecurityState();
state.m_Options = IsolatedStorageSecurityOptions.GetGroupAndIdForSite;
return state;
}
internal static IsolatedStorageSecurityState CreateStateToIncreaseQuotaForGroup(String group, Int64 newQuota, Int64 usedSize) {
IsolatedStorageSecurityState state = new IsolatedStorageSecurityState();
state.m_Options = IsolatedStorageSecurityOptions.IncreaseQuotaForGroup;
state.m_Group = group;
state.m_Quota = newQuota;
state.m_UsedSize = usedSize;
return state;
}
#endif // FEATURE_CORECLR
internal static IsolatedStorageSecurityState CreateStateToIncreaseQuotaForApplication(Int64 newQuota, Int64 usedSize) {
IsolatedStorageSecurityState state = new IsolatedStorageSecurityState();
state.m_Options = IsolatedStorageSecurityOptions.IncreaseQuotaForApplication;
state.m_Quota = newQuota;
state.m_UsedSize = usedSize;
return state;
}
[SecurityCritical]
private IsolatedStorageSecurityState() {
}
public IsolatedStorageSecurityOptions Options {
get {
return m_Options;
}
}
#if FEATURE_CORECLR
public String Group {
get {
return m_Group;
}
set {
m_Group = value;
}
}
public String Id {
get {
return m_Id;
}
set {
m_Id = value;
}
}
public String RootUserDirectory {
get {
return m_RootUserDirectory;
}
set {
m_RootUserDirectory = value;
}
}
#endif // FEATURE_CORECLR
public Int64 UsedSize {
get {
return m_UsedSize;
}
}
public Int64 Quota {
get {
return m_Quota;
}
set {
m_Quota = value;
}
}
[SecurityCritical]
public override void EnsureState() {
if(!IsStateAvailable()) {
throw new IsolatedStorageException(Environment.GetResourceString("IsolatedStorage_Operation"));
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MasterPageParser.cs
- SqlCommand.cs
- FtpWebResponse.cs
- ComponentResourceManager.cs
- CfgParser.cs
- Claim.cs
- SmiTypedGetterSetter.cs
- M3DUtil.cs
- ExceptionUtil.cs
- Opcode.cs
- FontSource.cs
- AttributeUsageAttribute.cs
- LinkButton.cs
- CursorConverter.cs
- MediaSystem.cs
- BaseCodePageEncoding.cs
- QilGeneratorEnv.cs
- BackStopAuthenticationModule.cs
- HwndHost.cs
- DataServiceKeyAttribute.cs
- PrivateFontCollection.cs
- XPathItem.cs
- DataFormat.cs
- JumpItem.cs
- SQLResource.cs
- HyperlinkAutomationPeer.cs
- SerialStream.cs
- SqlCommandSet.cs
- CodeParameterDeclarationExpressionCollection.cs
- CharAnimationUsingKeyFrames.cs
- WindowsListViewGroup.cs
- TransmissionStrategy.cs
- XmlSchemaSubstitutionGroup.cs
- ECDsa.cs
- SqlWorkflowPersistenceService.cs
- ComplexTypeEmitter.cs
- OdbcReferenceCollection.cs
- ReferenceConverter.cs
- ChangeTracker.cs
- BaseValidator.cs
- OutputCacheModule.cs
- OrderByBuilder.cs
- ValidationError.cs
- IDataContractSurrogate.cs
- ConfigurationManagerHelperFactory.cs
- ToolboxBitmapAttribute.cs
- Internal.cs
- StorageConditionPropertyMapping.cs
- SqlDataReader.cs
- DoubleAnimationClockResource.cs
- FlowLayoutSettings.cs
- EndpointAddressProcessor.cs
- GenericEnumerator.cs
- ObjectStateFormatter.cs
- KnownTypes.cs
- ProcessManager.cs
- ScrollableControl.cs
- MessageDesigner.cs
- Rect3DValueSerializer.cs
- KeyedCollection.cs
- Stack.cs
- ReachSerializer.cs
- MetadataCache.cs
- StrokeCollectionConverter.cs
- GridPatternIdentifiers.cs
- HTMLTextWriter.cs
- RegexWorker.cs
- ControlCodeDomSerializer.cs
- TableLayoutPanelCodeDomSerializer.cs
- ScaleTransform3D.cs
- DesignerTextWriter.cs
- ComplusTypeValidator.cs
- XmlSchemaAny.cs
- DragEvent.cs
- XmlIlGenerator.cs
- CommandBindingCollection.cs
- SecurityElement.cs
- WebServiceData.cs
- ViewBase.cs
- InternalDuplexChannelFactory.cs
- Matrix.cs
- WindowsHyperlink.cs
- LogicalExpr.cs
- DoubleAverageAggregationOperator.cs
- XmlSchemaAll.cs
- TextEncodedRawTextWriter.cs
- SvcMapFile.cs
- HttpRuntimeSection.cs
- EntityDataSourceEntitySetNameItem.cs
- XmlDocumentType.cs
- CompilerScope.Storage.cs
- TraceLog.cs
- ModelPropertyImpl.cs
- sortedlist.cs
- StatusBar.cs
- PartialArray.cs
- UserPreference.cs
- DetailsViewDeleteEventArgs.cs
- BoundConstants.cs
- LicFileLicenseProvider.cs