Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / ui / RegisteredHiddenField.cs / 1 / RegisteredHiddenField.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Diagnostics; using System.Security.Permissions; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), ] public sealed class RegisteredHiddenField { private Control _control; private string _name; private string _initialValue; internal RegisteredHiddenField(Control control, string hiddenFieldName, string hiddenFieldInitialValue) { Debug.Assert(control != null); Debug.Assert(hiddenFieldName != null); _control = control; _name = hiddenFieldName; _initialValue = hiddenFieldInitialValue; } public Control Control { get { return _control; } } public string InitialValue { get { // may be null return _initialValue; } } public string Name { get { return _name; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Diagnostics; using System.Security.Permissions; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), ] public sealed class RegisteredHiddenField { private Control _control; private string _name; private string _initialValue; internal RegisteredHiddenField(Control control, string hiddenFieldName, string hiddenFieldInitialValue) { Debug.Assert(control != null); Debug.Assert(hiddenFieldName != null); _control = control; _name = hiddenFieldName; _initialValue = hiddenFieldInitialValue; } public Control Control { get { return _control; } } public string InitialValue { get { // may be null return _initialValue; } } public string Name { get { return _name; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _ScatterGatherBuffers.cs
- ComponentCommands.cs
- ConstraintConverter.cs
- ConfigPathUtility.cs
- ClientApiGenerator.cs
- Vector3DCollectionConverter.cs
- DataSysAttribute.cs
- EventWaitHandleSecurity.cs
- HandlerFactoryWrapper.cs
- LinqDataSourceStatusEventArgs.cs
- GetKeyedHashRequest.cs
- EndPoint.cs
- RangeBase.cs
- TagNameToTypeMapper.cs
- FixedSOMFixedBlock.cs
- HttpRuntimeSection.cs
- _DomainName.cs
- LocalizabilityAttribute.cs
- DesignerCommandAdapter.cs
- GlyphRunDrawing.cs
- ImmutableObjectAttribute.cs
- PartialCachingControl.cs
- StringHandle.cs
- BitmapSourceSafeMILHandle.cs
- FontStretches.cs
- PrinterResolution.cs
- EntityContainerRelationshipSet.cs
- Drawing.cs
- ModifiableIteratorCollection.cs
- OutputCacheSection.cs
- ResourceDescriptionAttribute.cs
- RawTextInputReport.cs
- DbInsertCommandTree.cs
- TTSEngineProxy.cs
- ResourceExpressionBuilder.cs
- ReachSerializationUtils.cs
- Win32MouseDevice.cs
- PageScaling.cs
- DataGridViewAccessibleObject.cs
- Utils.cs
- GridViewItemAutomationPeer.cs
- DispatcherTimer.cs
- DrawingBrush.cs
- LongSumAggregationOperator.cs
- ContractType.cs
- Stopwatch.cs
- ITextView.cs
- ItemCheckedEvent.cs
- DataGridCell.cs
- CompilerTypeWithParams.cs
- LineVisual.cs
- HintTextConverter.cs
- HttpListenerPrefixCollection.cs
- InitializerFacet.cs
- SafeBitVector32.cs
- ProfessionalColors.cs
- ComponentEditorForm.cs
- BindingListCollectionView.cs
- __FastResourceComparer.cs
- SHA1Managed.cs
- PtsPage.cs
- RelatedPropertyManager.cs
- StyleCollectionEditor.cs
- ArrayEditor.cs
- XamlDesignerSerializationManager.cs
- MappingSource.cs
- PartialCachingControl.cs
- HttpConfigurationSystem.cs
- XmlSchemaAttributeGroupRef.cs
- Evidence.cs
- TreeNodeCollection.cs
- MetadataCollection.cs
- Style.cs
- SspiSafeHandles.cs
- EastAsianLunisolarCalendar.cs
- RemotingException.cs
- ClientSideProviderDescription.cs
- NetworkInformationPermission.cs
- Win32Exception.cs
- BlockUIContainer.cs
- CommonObjectSecurity.cs
- ColorContext.cs
- PassportAuthentication.cs
- StrongNameUtility.cs
- DataListGeneralPage.cs
- DeviceSpecificDesigner.cs
- ProxyElement.cs
- StringPropertyBuilder.cs
- SrgsElementFactory.cs
- ByteStreamMessageEncoderFactory.cs
- FixedHyperLink.cs
- GenerateHelper.cs
- SafeViewOfFileHandle.cs
- DataGridItemCollection.cs
- Hash.cs
- CodeTypeDelegate.cs
- FixedSOMPageConstructor.cs
- DataGridViewAdvancedBorderStyle.cs
- StringHelper.cs
- DataServiceKeyAttribute.cs