Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- _CookieModule.cs
- PeerContact.cs
- TimeSpanValidator.cs
- ImageInfo.cs
- SqlBulkCopyColumnMappingCollection.cs
- InternalBufferOverflowException.cs
- WebPartZoneCollection.cs
- MatrixCamera.cs
- JsonCollectionDataContract.cs
- WorkflowMarkupElementEventArgs.cs
- SiteMapNodeCollection.cs
- HttpClientProtocol.cs
- WebPartZoneBase.cs
- QilSortKey.cs
- ValidatingCollection.cs
- SerializationException.cs
- RegistrationServices.cs
- Activation.cs
- CommonObjectSecurity.cs
- InternalBase.cs
- XmlSchemaExporter.cs
- MachineKeyConverter.cs
- AggregationMinMaxHelpers.cs
- ControlIdConverter.cs
- Resources.Designer.cs
- RefreshPropertiesAttribute.cs
- ObjectTokenCategory.cs
- XmlSerializationReader.cs
- RegisteredHiddenField.cs
- SqlDataSourceEnumerator.cs
- TableRowGroup.cs
- ProfileParameter.cs
- FileSystemWatcher.cs
- WebCategoryAttribute.cs
- EncoderFallback.cs
- SpeechAudioFormatInfo.cs
- SmtpException.cs
- ParallelTimeline.cs
- HtmlElement.cs
- WebPartUtil.cs
- WebRequest.cs
- GeometryModel3D.cs
- SelectionEditor.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- StringUtil.cs
- TreeNodeSelectionProcessor.cs
- TextFormatter.cs
- CompilationSection.cs
- TemplateControlCodeDomTreeGenerator.cs
- InvokeAction.cs
- NativeActivityAbortContext.cs
- ProgressBar.cs
- HtmlEmptyTagControlBuilder.cs
- ThreadExceptionEvent.cs
- GridViewDeletedEventArgs.cs
- ConstraintStruct.cs
- TextElementEnumerator.cs
- QueryParameter.cs
- Matrix3DConverter.cs
- ControlUtil.cs
- PerformanceCounterPermissionEntryCollection.cs
- FontWeights.cs
- PagerSettings.cs
- NavigationProperty.cs
- ClaimSet.cs
- CheckBox.cs
- SmiEventStream.cs
- ArglessEventHandlerProxy.cs
- TextElementCollection.cs
- SettingsPropertyValue.cs
- TableSectionStyle.cs
- MenuItemBindingCollection.cs
- ToolStripItemRenderEventArgs.cs
- SEHException.cs
- Accessors.cs
- CounterSetInstanceCounterDataSet.cs
- FileDetails.cs
- OdbcFactory.cs
- AmbientLight.cs
- BindingsCollection.cs
- HashStream.cs
- WebControlParameterProxy.cs
- CompiledRegexRunnerFactory.cs
- UriScheme.cs
- WindowsEditBoxRange.cs
- TypeGeneratedEventArgs.cs
- OpacityConverter.cs
- PaintValueEventArgs.cs
- CodeTypeParameterCollection.cs
- RegexCompiler.cs
- FixedBufferAttribute.cs
- MessageDroppedTraceRecord.cs
- ObfuscationAttribute.cs
- DeclarativeConditionsCollection.cs
- FixedSOMTextRun.cs
- ArrayWithOffset.cs
- MatchNoneMessageFilter.cs
- UnknownBitmapDecoder.cs
- DBProviderConfigurationHandler.cs
- ClientUtils.cs