40 references to ToString
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\XmlPropertyBag.cs (1)
262
return XmlConvert.
ToString
((int)value);
System.Data (4)
fx\src\data\System\Data\Common\Int32Storage.cs (1)
227
return XmlConvert.
ToString
((Int32)value);
fx\src\data\System\Data\Common\SQLConvert.cs (2)
733
return XmlConvert.
ToString
(((SqlInt32)value).Value);
755
return XmlConvert.
ToString
((Int32) value);
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
610
writer.WriteString(XmlConvert.
ToString
(m_value));
System.Data.Services (2)
System\Data\Services\Parsing\WebConvert.cs (1)
657
result = XmlConvert.
ToString
((Int32)value);
System\Data\Services\Providers\ObjectContextServiceProvider.cs (1)
1577
xmlWriter.WriteAttributeString(facetName, XmlConvert.
ToString
((int)facetValue));
System.Data.Services.Client (2)
parent\Server\System\Data\Services\Parsing\WebConvert.cs (1)
657
result = XmlConvert.
ToString
((Int32)value);
System\Data\Services\Client\ClientConvert.cs (1)
329
return XmlConvert.
ToString
((Int32)propertyValue);
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
4860
writer.WriteAttributeString(Saml2Constants.Attributes.Count, XmlConvert.
ToString
(data.Count.Value));
System.Runtime.Serialization (3)
System\Runtime\Serialization\ExtensionDataReader.cs (2)
669
this.value = XmlConvert.
ToString
((int)(isTypedNode ? ((DataNode<char>)dataNode).GetValue() : (char)dataNode.Value));
678
this.value = XmlConvert.
ToString
(isTypedNode ? ((DataNode<int>)dataNode).GetValue() : (int)dataNode.Value);
System\Xml\XmlConverter.cs (1)
414
static public string ToString(int value) { return XmlConvert.
ToString
(value); }
System.ServiceModel (1)
System\ServiceModel\Channels\PrivacyNoticeBindingElement.cs (1)
96
assertion.SetAttribute(PrivacyNoticePolicyStrings.PrivacyNoticeVersionAttributeName, PrivacyNoticePolicyStrings.PrivacyNoticeNamespace, XmlConvert.
ToString
(settings.Version));
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (1)
190
return XmlConvert.
ToString
((int) parameter);
System.Web.Extensions (4)
Compilation\XmlSerializer\DataSvcMapFileSerializer.cs (2)
149
WriteAttribute(@"SourceId", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@SourceId)));
193
WriteAttribute(@"SourceId", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@SourceId)));
Compilation\XmlSerializer\SvcMapFileSerializer.cs (2)
120
WriteAttribute(@"SourceId", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@SourceId)));
164
WriteAttribute(@"SourceId", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@SourceId)));
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
806
WriteAttribute(@"group", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@Group)));
809
WriteAttribute(@"capture", @"", System.Xml.XmlConvert.
ToString
((global::System.Int32)((global::System.Int32)o.@Capture)));
System.Xml (19)
System\Xml\Core\XmlWriter.cs (1)
320
WriteString(XmlConvert.
ToString
(value));
System\Xml\Schema\XmlValueConverter.cs (10)
832
throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.
ToString
(value), "Byte" }));
839
throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.
ToString
(value), "Int16" }));
846
throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.
ToString
(value), "SByte" }));
853
throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.
ToString
(value), "UInt16" }));
1030
return XmlConvert.
ToString
((int) value);
1046
if (sourceType == Int32Type) return XmlConvert.
ToString
((int) value);
1080
if (destinationType == StringType) return XmlConvert.
ToString
((int) value);
2359
return XmlConvert.
ToString
((int) value);
2385
if (sourceType == Int32Type) return XmlConvert.
ToString
((int) value);
2455
if (destinationType == StringType) return XmlConvert.
ToString
((int) value);
System\Xml\Schema\XsdDuration.cs (6)
375
sb.Append(XmlConvert.
ToString
(this.years));
380
sb.Append(XmlConvert.
ToString
(this.months));
387
sb.Append(XmlConvert.
ToString
(this.days));
394
sb.Append(XmlConvert.
ToString
(this.hours));
399
sb.Append(XmlConvert.
ToString
(this.minutes));
405
sb.Append(XmlConvert.
ToString
(this.seconds));
System\Xml\Serialization\PrimitiveXmlSerializers.cs (1)
27
WriteElementStringRaw(@"int", @"", System.Xml.XmlConvert.
ToString
((System.Int32)((System.Int32)o)));
System\Xml\Serialization\XmlSerializationWriter.cs (1)
235
value = XmlConvert.
ToString
((int)o);