Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Diagnostics / UnescapedXmlDiagnosticData.cs / 1305376 / UnescapedXmlDiagnosticData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; namespace System.Diagnostics { // This is just a type to tag XML data; we don't do any welformedness check or any such validation [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public class UnescapedXmlDiagnosticData { string _xmlString; public UnescapedXmlDiagnosticData (String xmlPayload) { _xmlString = xmlPayload; if (_xmlString == null) { _xmlString = String.Empty; } } public String UnescapedXml { get {return _xmlString;} set {_xmlString = value;} } public override String ToString() { return _xmlString; } } } // 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
- TogglePatternIdentifiers.cs
- AsyncOperationManager.cs
- CurrencyManager.cs
- FileSecurity.cs
- TextDecorations.cs
- GeometryDrawing.cs
- LinqMaximalSubtreeNominator.cs
- EncoderFallback.cs
- DocumentPageTextView.cs
- BrowsableAttribute.cs
- ReflectionPermission.cs
- WindowsToolbarItemAsMenuItem.cs
- RSAProtectedConfigurationProvider.cs
- XmlUtil.cs
- XmlQualifiedName.cs
- GestureRecognizer.cs
- XmlTypeAttribute.cs
- SlotInfo.cs
- WindowsScroll.cs
- PtsPage.cs
- DataControlFieldCollection.cs
- ThreadPool.cs
- NullableIntMinMaxAggregationOperator.cs
- Control.cs
- PermissionListSet.cs
- AxWrapperGen.cs
- DbProviderSpecificTypePropertyAttribute.cs
- WebBrowserEvent.cs
- OleDbDataReader.cs
- BindingOperations.cs
- SerializationException.cs
- AppPool.cs
- DataBinding.cs
- ThemeInfoAttribute.cs
- WindowsListViewSubItem.cs
- DPCustomTypeDescriptor.cs
- WrapPanel.cs
- FixedTextBuilder.cs
- RawAppCommandInputReport.cs
- SeverityFilter.cs
- WebBrowser.cs
- infer.cs
- HtmlImage.cs
- KeyFrames.cs
- XmlSchemaComplexContentRestriction.cs
- XmlSchemaAttribute.cs
- SQLDateTime.cs
- ActivityCodeGenerator.cs
- Clause.cs
- XmlIgnoreAttribute.cs
- DateTimeOffset.cs
- XomlCompiler.cs
- PersonalizablePropertyEntry.cs
- CategoryNameCollection.cs
- EntityFrameworkVersions.cs
- SHA512.cs
- WebControlAdapter.cs
- FlowLayoutSettings.cs
- Debug.cs
- DateTimeConverter.cs
- MemberMemberBinding.cs
- FullTrustAssembly.cs
- TransactionInformation.cs
- FlowLayoutPanel.cs
- XmlWriterTraceListener.cs
- TextTrailingWordEllipsis.cs
- ImageButton.cs
- DataSourceControlBuilder.cs
- VideoDrawing.cs
- WindowsSlider.cs
- RegexWriter.cs
- ExpressionStringBuilder.cs
- LogArchiveSnapshot.cs
- TemplateAction.cs
- DoubleIndependentAnimationStorage.cs
- UserNamePasswordClientCredential.cs
- HttpApplication.cs
- FixedStringLookup.cs
- MethodMessage.cs
- XmlArrayAttribute.cs
- Events.cs
- Tablet.cs
- MasterPageCodeDomTreeGenerator.cs
- WmlPanelAdapter.cs
- TableLayoutSettings.cs
- WsdlInspector.cs
- IdentifierElement.cs
- BitConverter.cs
- ForeignConstraint.cs
- DescendentsWalkerBase.cs
- TextRunCacheImp.cs
- RegexStringValidatorAttribute.cs
- Cursors.cs
- RuntimeVariableList.cs
- SqlDataSourceView.cs
- HttpModule.cs
- Simplifier.cs
- DataPagerFieldCommandEventArgs.cs
- IPAddress.cs
- IsolatedStorageFilePermission.cs