Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / Missing.cs / 1 / Missing.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Security.Permissions; namespace System.Reflection { // This is not serializable because it is a reflection command. [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Missing: ISerializable { public static readonly Missing Value = new Missing(); #region Constructor private Missing() { } #endregion #region ISerializable [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) throw new ArgumentNullException("info"); UnitySerializationHolder.GetUnitySerializationInfo(info, this); } #endregion } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _ReceiveMessageOverlappedAsyncResult.cs
- ScopeCollection.cs
- DataViewListener.cs
- EnumValAlphaComparer.cs
- AutomationElementIdentifiers.cs
- ProviderIncompatibleException.cs
- CopyAttributesAction.cs
- BamlBinaryWriter.cs
- HttpConfigurationSystem.cs
- ScrollProperties.cs
- GenerateTemporaryAssemblyTask.cs
- BindingsCollection.cs
- ByteFacetDescriptionElement.cs
- RijndaelManaged.cs
- ClientScriptManager.cs
- Geometry3D.cs
- RichTextBox.cs
- UserPreferenceChangingEventArgs.cs
- OleDbParameter.cs
- SqlDataRecord.cs
- ApplicationInfo.cs
- UnicastIPAddressInformationCollection.cs
- ToolboxService.cs
- ReturnType.cs
- GroupBoxDesigner.cs
- MediaContext.cs
- CompilerInfo.cs
- TextBounds.cs
- FrameworkObject.cs
- ColorBuilder.cs
- SafeHandles.cs
- ScrollEventArgs.cs
- TextBoxAutomationPeer.cs
- Msec.cs
- DecoratedNameAttribute.cs
- GridViewActionList.cs
- BoundColumn.cs
- WebConfigurationHostFileChange.cs
- SqlProviderManifest.cs
- GeneralTransformGroup.cs
- AdCreatedEventArgs.cs
- ProcessMessagesAsyncResult.cs
- AlternateView.cs
- SettingsAttributeDictionary.cs
- _ContextAwareResult.cs
- PartialCachingControl.cs
- ControlPaint.cs
- SpellCheck.cs
- GridViewDeletedEventArgs.cs
- ToolStripRenderEventArgs.cs
- FieldToken.cs
- RelationshipDetailsRow.cs
- OlePropertyStructs.cs
- HttpCachePolicyElement.cs
- AssociationSet.cs
- XmlTextEncoder.cs
- MouseEvent.cs
- UnsafeNativeMethods.cs
- ChannelRequirements.cs
- ServiceContractGenerator.cs
- TypeConverterAttribute.cs
- ObjectSet.cs
- SafeRightsManagementHandle.cs
- ServiceDesigner.cs
- PoisonMessageException.cs
- FixedHyperLink.cs
- AutoCompleteStringCollection.cs
- TypeUsageBuilder.cs
- BlockUIContainer.cs
- ServiceManagerHandle.cs
- PeerReferralPolicy.cs
- DataContractSerializerSection.cs
- ConfigXmlReader.cs
- ObjectListCommand.cs
- MenuTracker.cs
- SystemIcons.cs
- SendMailErrorEventArgs.cs
- SoapMessage.cs
- Trace.cs
- SchemaExporter.cs
- mactripleDES.cs
- XmlByteStreamWriter.cs
- PointKeyFrameCollection.cs
- TypeExtension.cs
- AliasedSlot.cs
- KnownBoxes.cs
- RowBinding.cs
- DesignSurfaceCollection.cs
- ListMarkerLine.cs
- UnsafeNativeMethods.cs
- ApplicationManager.cs
- TextComposition.cs
- XsltArgumentList.cs
- DataTemplateKey.cs
- FamilyCollection.cs
- TextEncodedRawTextWriter.cs
- RepeaterDataBoundAdapter.cs
- WpfMemberInvoker.cs
- SHA256Managed.cs
- ReferenceEqualityComparer.cs