Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / documentation.cs / 1 / documentation.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Common; using System.Diagnostics; using System.Globalization; using System.Text; using System.Data.Common.Utils; namespace System.Data.Metadata.Edm { ////// Class representing the Documentation associated with an item /// public sealed class Documentation: MetadataItem { #region Fields private string _summary = ""; private string _longDescription = ""; #endregion #region Constructors ////// Default constructor - primarily created for supporting usage of this Do----netation class by SOM. /// internal Documentation() { } #endregion #region Properties ////// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.Documentation; } } ////// Gets the Summary for this Documentation instance. /// /// public string Summary { get { return _summary; } internal set { if (value != null) _summary = value; else _summary = ""; } } ////// Gets the LongDescription for this Documentation instance. /// /// public string LongDescription { get { return _longDescription; } internal set { if (value != null) _longDescription = value; else _longDescription = ""; } } ////// This property is required to be implemented for inheriting from MetadataItem. As there can be atmost one /// instance of a nested-Documentation, return the constant "Documentation" as it's identity. /// internal override string Identity { get { return "Documentation"; } } ////// Returns true if this Documentation instance contains only null/empty summary and longDescription /// /// public bool IsEmpty { get { if (string.IsNullOrEmpty(_summary) && string.IsNullOrEmpty(_longDescription) ) { return true; } return false; } } #endregion #region Methods ////// public override string ToString() { return _summary; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Data.Common; using System.Diagnostics; using System.Globalization; using System.Text; using System.Data.Common.Utils; namespace System.Data.Metadata.Edm { ////// Class representing the Documentation associated with an item /// public sealed class Documentation: MetadataItem { #region Fields private string _summary = ""; private string _longDescription = ""; #endregion #region Constructors ////// Default constructor - primarily created for supporting usage of this Do----netation class by SOM. /// internal Documentation() { } #endregion #region Properties ////// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.Documentation; } } ////// Gets the Summary for this Documentation instance. /// /// public string Summary { get { return _summary; } internal set { if (value != null) _summary = value; else _summary = ""; } } ////// Gets the LongDescription for this Documentation instance. /// /// public string LongDescription { get { return _longDescription; } internal set { if (value != null) _longDescription = value; else _longDescription = ""; } } ////// This property is required to be implemented for inheriting from MetadataItem. As there can be atmost one /// instance of a nested-Documentation, return the constant "Documentation" as it's identity. /// internal override string Identity { get { return "Documentation"; } } ////// Returns true if this Documentation instance contains only null/empty summary and longDescription /// /// public bool IsEmpty { get { if (string.IsNullOrEmpty(_summary) && string.IsNullOrEmpty(_longDescription) ) { return true; } return false; } } #endregion #region Methods ////// public override string ToString() { return _summary; } #endregion } } // 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
- TextBox.cs
- RemotingException.cs
- WeakEventManager.cs
- TripleDES.cs
- XmlValueConverter.cs
- ClaimComparer.cs
- SystemBrushes.cs
- ParserExtension.cs
- DropDownButton.cs
- StickyNoteAnnotations.cs
- _NestedSingleAsyncResult.cs
- KnownAssemblyEntry.cs
- BindingFormattingDialog.cs
- TemplateColumn.cs
- DependencySource.cs
- StylusPointPropertyUnit.cs
- DateTimeFormatInfo.cs
- FtpCachePolicyElement.cs
- MergeLocalizationDirectives.cs
- GridViewRow.cs
- UIElement3D.cs
- SafeFindHandle.cs
- SocketElement.cs
- EmptyReadOnlyDictionaryInternal.cs
- TextEndOfSegment.cs
- UnmanagedMemoryAccessor.cs
- CopyOnWriteList.cs
- Region.cs
- XmlSchemaObjectCollection.cs
- PageWrapper.cs
- FrameworkEventSource.cs
- ModelItemDictionary.cs
- GB18030Encoding.cs
- ReflectionPermission.cs
- InvalidDataException.cs
- Border.cs
- ItemCheckedEvent.cs
- ApplicationSettingsBase.cs
- XmlBindingWorker.cs
- SerTrace.cs
- ConstrainedDataObject.cs
- activationcontext.cs
- Color.cs
- NotifyIcon.cs
- EmptyElement.cs
- AttachedPropertyBrowsableAttribute.cs
- HttpListenerPrefixCollection.cs
- DataGridAutomationPeer.cs
- IgnoreSectionHandler.cs
- BamlVersionHeader.cs
- DataGridViewSelectedColumnCollection.cs
- MarkupWriter.cs
- FixedSOMSemanticBox.cs
- RIPEMD160Managed.cs
- ComplexType.cs
- RuntimeResourceSet.cs
- CodeArgumentReferenceExpression.cs
- HitTestDrawingContextWalker.cs
- CqlErrorHelper.cs
- WebPartHelpVerb.cs
- ToolStripItemTextRenderEventArgs.cs
- TextSelectionProcessor.cs
- _Semaphore.cs
- DtrList.cs
- RelatedCurrencyManager.cs
- TextEditorParagraphs.cs
- RNGCryptoServiceProvider.cs
- EnumBuilder.cs
- WebPartZoneBase.cs
- ColumnBinding.cs
- oledbmetadatacollectionnames.cs
- FlowchartDesigner.Helpers.cs
- WinOEToolBoxItem.cs
- PolicyChain.cs
- ModifierKeysValueSerializer.cs
- SmtpCommands.cs
- MatchingStyle.cs
- ToggleProviderWrapper.cs
- State.cs
- DataSysAttribute.cs
- FacetValues.cs
- CreateSequence.cs
- BitmapMetadataBlob.cs
- MediaTimeline.cs
- EmptyElement.cs
- RightsManagementErrorHandler.cs
- RelatedImageListAttribute.cs
- ZoneMembershipCondition.cs
- DelegateSerializationHolder.cs
- ContextMenu.cs
- RecordsAffectedEventArgs.cs
- CompilerLocalReference.cs
- EntitySqlQueryCacheEntry.cs
- SchemaObjectWriter.cs
- XmlText.cs
- ToggleProviderWrapper.cs
- EventLogTraceListener.cs
- CodeGenerator.cs
- CodePageUtils.cs
- ApplicationBuildProvider.cs