Merge pull request #5066 from spouliot/xcode10.1-master

Merge xcode10.1 into master
This commit is contained in:
Sebastien Pouliot 2018-11-01 14:00:53 -04:00 коммит произвёл GitHub
Родитель fdc691d771 2dec2c0193
Коммит f60fcbbb16
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
49 изменённых файлов: 73507 добавлений и 3700 удалений

Просмотреть файл

@ -38,9 +38,9 @@ IOS_PACKAGE_VERSION_BUILD=$(IOS_COMMIT_DISTANCE)
IOS_PACKAGE_UPDATE_ID=$(shell printf "2%02d%02d%02d%03d" $(IOS_PACKAGE_VERSION_MAJOR) $(IOS_PACKAGE_VERSION_MINOR) $(IOS_PACKAGE_VERSION_REV) $(IOS_PACKAGE_VERSION_BUILD))
# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=10.0
XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_10.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode10.app/Contents/Developer
XCODE_VERSION=10.1
XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_10.1.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode101.app/Contents/Developer
XCODE94_VERSION=9.4
XCODE94_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_9.4.xip
@ -74,11 +74,11 @@ MIN_OSX_BUILD_VERSION=10.13
MIN_OSX_VERSION_FOR_IOS=10.11
MIN_OSX_VERSION_FOR_MAC=10.11
IOS_SDK_VERSION=12.0
IOS_SDK_VERSION=12.1
# When bumping OSX_SDK_VERSION also update the macOS version where we execute on bots in jenkins/Jenkinsfile (in the 'node' element)
OSX_SDK_VERSION=10.14
WATCH_SDK_VERSION=5.0
TVOS_SDK_VERSION=12.0
WATCH_SDK_VERSION=5.1
TVOS_SDK_VERSION=12.1
MIN_IOS_SDK_VERSION=6.0
MIN_OSX_SDK_VERSION=10.7

Просмотреть файл

@ -31,6 +31,7 @@
<string>11.3</string>
<string>11.4</string>
<string>12.0</string>
<string>12.1</string>
</array>
<key>tvOS</key>
<array>
@ -46,6 +47,7 @@
<string>11.3</string>
<string>11.4</string>
<string>12.0</string>
<string>12.1</string>
</array>
<key>watchOS</key>
<array>
@ -61,6 +63,7 @@
<string>4.2</string>
<string>4.3</string>
<string>5.0</string>
<string>5.1</string>
</array>
</dict>
<key>RecommendedXcodeVersion</key>

Просмотреть файл

@ -47,6 +47,12 @@ namespace GameController {
public float /* float_t = float */ LeftTrigger;
public float /* float_t = float */ RightTrigger;
// radar: https://trello.com/c/7FoGTORD (GCExtendedGamepadSnapShotDataV100 struct size / alignment not backward compatible)
// [TV (12, 1), Mac (10, 14, 1, onlyOn64: true), iOS (12, 1)]
// public bool LeftThumbstickButton;
// [TV (12, 1), Mac (10, 14, 1, onlyOn64: true), iOS (12, 1)]
// public bool RightThumbstickButton;
[DllImport (Constants.GameControllerLibrary)]
static extern /* NSData * __nullable */ IntPtr NSDataFromGCExtendedGamepadSnapShotDataV100 (
/* GCExtendedGamepadSnapShotDataV100 * __nullable */ ref GCExtendedGamepadSnapShotDataV100 snapshotData);

Просмотреть файл

@ -129,6 +129,10 @@ namespace Security {
[DllImport (Constants.SecurityLibrary)]
extern static SecStatusCode /* OSStatus */ SecTrustEvaluate (IntPtr /* SecTrustRef */ trust, out /* SecTrustResultType */ SecTrustResult result);
[Deprecated (PlatformName.iOS, 12, 1, message : "Use 'SecTrust.Evaluate (out NSError)' instead.")]
[Deprecated (PlatformName.TvOS, 12, 1, message : "Use 'SecTrust.Evaluate (out NSError)' instead.")]
[Deprecated (PlatformName.WatchOS, 5, 1, message : "Use 'SecTrust.Evaluate (out NSError)' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 14, 1, message : "Use 'SecTrust.Evaluate (out NSError)' instead.")]
public SecTrustResult Evaluate ()
{
if (handle == IntPtr.Zero)

Просмотреть файл

@ -147,12 +147,35 @@ namespace CoreTelephony {
string CarrierName { get; }
}
interface ICTSubscriberDelegate {}
[Protocol]
[iOS (12,1)]
interface CTSubscriberDelegate {
[Abstract]
[Export ("subscriberTokenRefreshed:")]
void SubscriberTokenRefreshed (CTSubscriber subscriber);
}
[BaseType (typeof (NSObject))]
[iOS (7,0)]
partial interface CTSubscriber {
[iOS (7,0), Export ("carrierToken")]
[Deprecated (PlatformName.iOS, 11, 0)]
NSData CarrierToken { get; }
[iOS (12,1)]
[Export ("identifier")]
string Identifier { get; }
[iOS (12,1)]
[NullAllowed, Export ("delegate", ArgumentSemantic.Weak)]
NSObject WeakDelegate { get; set; }
[iOS (12,1)]
[Wrap ("WeakDelegate")]
[NullAllowed]
ICTSubscriberDelegate Delegate { get; set; }
}
#if !XAMCORE_2_0
@ -161,9 +184,15 @@ namespace CoreTelephony {
[iOS (6,0), BaseType (typeof (NSObject))]
partial interface CTSubscriberInfo {
[Deprecated (PlatformName.iOS, 12, 1, message : "Use 'Subscribers' instead.")]
[Static]
[Export ("subscriber")]
CTSubscriber Subscriber { get; }
[iOS (12,1)]
[Static]
[Export ("subscribers")]
CTSubscriber[] Subscribers { get; }
}
[iOS (12,0)]

Просмотреть файл

@ -221,6 +221,14 @@ namespace GameController {
[Export ("rightTrigger")]
GCControllerButtonInput RightTrigger { get; }
[TV (12, 1), Mac (10, 14, 1, onlyOn64: true), iOS (12, 1)]
[NullAllowed, Export ("leftThumbstickButton")]
GCControllerButtonInput LeftThumbstickButton { get; }
[TV (12, 1), Mac (10, 14, 1, onlyOn64: true), iOS (12, 1)]
[NullAllowed, Export ("rightThumbstickButton")]
GCControllerButtonInput RightThumbstickButton { get; }
}
[iOS (7,0)]

Просмотреть файл

@ -136,6 +136,10 @@ namespace IdentityLookup {
[Export ("action", ArgumentSemantic.Assign)]
ILClassificationAction Action { get; }
[iOS (12,1)]
[NullAllowed, Export ("userString")]
string UserString { get; set; }
// Objects can be NSString, NSNumber, NSArray, NSDictionary, or NSNull
[NullAllowed, Export ("userInfo", ArgumentSemantic.Copy)]
NSDictionary<NSString, NSObject> UserInfo { get; set; }

Просмотреть файл

@ -235,6 +235,7 @@ namespace Intents {
InvalidIntentName = 2004,
NoAppAvailable = 2005,
RequestTimedOut = 3001,
MissingInformation = 3002,
InvalidUserVocabularyFileLocation = 4000,
ExtensionLaunchingTimeout = 5000,
ExtensionBringUpFailed = 5001,

Просмотреть файл

@ -18115,4 +18115,45 @@ namespace UIKit {
#endif // !WATCH
}
#if !WATCH
[iOS (12,1)]
[NoWatch][NoTV]
[Native]
public enum UIPencilPreferredAction : long {
Ignore = 0,
SwitchEraser,
SwitchPrevious,
ShowColorPalette,
}
[iOS (12,1)]
[NoWatch][NoTV]
[BaseType (typeof (NSObject))]
interface UIPencilInteraction : UIInteraction {
[Static]
[Export ("preferredTapAction")]
UIPencilPreferredAction PreferredTapAction { get; }
[Wrap ("WeakDelegate")]
[NullAllowed]
IUIPencilInteractionDelegate Delegate { get; set; }
[NullAllowed, Export ("delegate", ArgumentSemantic.Weak)]
NSObject WeakDelegate { get; set; }
[Export ("enabled")]
bool Enabled { [Bind ("isEnabled")] get; set; }
}
interface IUIPencilInteractionDelegate {}
[iOS (12,1)]
[NoWatch][NoTV]
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UIPencilInteractionDelegate {
[Export ("pencilInteractionDidTap:")]
void DidTap (UIPencilInteraction interaction);
}
#endif // !WATCH
}

Просмотреть файл

@ -54,6 +54,9 @@ namespace Introspection {
};
#else
Minimum = new Version (10,7);
// Need to special case macOS 'Maximum' version for OS minor subversions (can't change Constants.SdkVersion)
// Please comment the code below if needed
Maximum = new Version (10,14,1);
Filter = (AvailabilityBaseAttribute arg) => {
return (arg.AvailabilityKind != AvailabilityKind.Introduced) || (arg.Platform != PlatformName.MacOSX);
};

Просмотреть файл

@ -437,3 +437,75 @@
!missing-selector! MPSState::resourceSize not bound
!missing-selector! MPSStateResourceList::init not bound
!missing-selector! MPSVector::resourceSize not bound
## xcode 10.1
!missing-enum! MPSNNComparisonType not bound
!missing-selector! +MPSNNGraph::graphWithDevice:resultImages:resultsAreNeeded: not bound
!missing-selector! +MPSNNPadGradientNode::nodeWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! +MPSNNPadNode::nodeWithSource:paddingSizeBefore:paddingSizeAfter:edgeMode: not bound
!missing-selector! +MPSNNReductionSpatialMeanGradientNode::nodeWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! +MPSNNReshapeGradientNode::nodeWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! +MPSNNReshapeNode::nodeWithSource:resultWidth:resultHeight:resultFeatureChannels: not bound
!missing-selector! +MPSNNUnaryReductionNode::nodeWithSource: not bound
!missing-selector! MPSNNCompare::comparisonType not bound
!missing-selector! MPSNNCompare::initWithDevice: not bound
!missing-selector! MPSNNCompare::setComparisonType: not bound
!missing-selector! MPSNNCompare::setThreshold: not bound
!missing-selector! MPSNNCompare::threshold not bound
!missing-selector! MPSNNComparisonNode::comparisonType not bound
!missing-selector! MPSNNComparisonNode::setComparisonType: not bound
!missing-selector! MPSNNGraph::initWithDevice:resultImages:resultsAreNeeded: not bound
!missing-selector! MPSNNGraph::readCountForSourceImageAtIndex: not bound
!missing-selector! MPSNNGraph::readCountForSourceStateAtIndex: not bound
!missing-selector! MPSNNPad::fillValue not bound
!missing-selector! MPSNNPad::initWithCoder:device: not bound
!missing-selector! MPSNNPad::initWithDevice: not bound
!missing-selector! MPSNNPad::initWithDevice:paddingSizeBefore:paddingSizeAfter: not bound
!missing-selector! MPSNNPad::initWithDevice:paddingSizeBefore:paddingSizeAfter:fillValueArray: not bound
!missing-selector! MPSNNPad::paddingSizeAfter not bound
!missing-selector! MPSNNPad::paddingSizeBefore not bound
!missing-selector! MPSNNPad::setFillValue: not bound
!missing-selector! MPSNNPad::setPaddingSizeAfter: not bound
!missing-selector! MPSNNPad::setPaddingSizeBefore: not bound
!missing-selector! MPSNNPadGradient::initWithCoder:device: not bound
!missing-selector! MPSNNPadGradient::initWithDevice: not bound
!missing-selector! MPSNNPadGradientNode::initWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! MPSNNPadNode::fillValue not bound
!missing-selector! MPSNNPadNode::initWithSource:paddingSizeBefore:paddingSizeAfter:edgeMode: not bound
!missing-selector! MPSNNPadNode::setFillValue: not bound
!missing-selector! MPSNNReductionFeatureChannelsSumNode::setWeight: not bound
!missing-selector! MPSNNReductionFeatureChannelsSumNode::weight not bound
!missing-selector! MPSNNReductionSpatialMeanGradientNode::initWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! MPSNNReshapeGradient::initWithCoder:device: not bound
!missing-selector! MPSNNReshapeGradient::initWithDevice: not bound
!missing-selector! MPSNNReshapeGradientNode::initWithSourceGradient:sourceImage:gradientState: not bound
!missing-selector! MPSNNReshapeNode::initWithSource:resultWidth:resultHeight:resultFeatureChannels: not bound
!missing-selector! MPSNNUnaryReductionNode::clipRectSource not bound
!missing-selector! MPSNNUnaryReductionNode::initWithSource: not bound
!missing-selector! MPSNNUnaryReductionNode::setClipRectSource: not bound
!missing-type! MPSNNCompare not bound
!missing-type! MPSNNComparisonNode not bound
!missing-type! MPSNNPad not bound
!missing-type! MPSNNPadGradient not bound
!missing-type! MPSNNPadGradientNode not bound
!missing-type! MPSNNPadNode not bound
!missing-type! MPSNNReductionColumnMaxNode not bound
!missing-type! MPSNNReductionColumnMeanNode not bound
!missing-type! MPSNNReductionColumnMinNode not bound
!missing-type! MPSNNReductionColumnSumNode not bound
!missing-type! MPSNNReductionFeatureChannelsArgumentMaxNode not bound
!missing-type! MPSNNReductionFeatureChannelsArgumentMinNode not bound
!missing-type! MPSNNReductionFeatureChannelsMaxNode not bound
!missing-type! MPSNNReductionFeatureChannelsMeanNode not bound
!missing-type! MPSNNReductionFeatureChannelsMinNode not bound
!missing-type! MPSNNReductionFeatureChannelsSumNode not bound
!missing-type! MPSNNReductionRowMaxNode not bound
!missing-type! MPSNNReductionRowMeanNode not bound
!missing-type! MPSNNReductionRowMinNode not bound
!missing-type! MPSNNReductionRowSumNode not bound
!missing-type! MPSNNReductionSpatialMeanGradientNode not bound
!missing-type! MPSNNReductionSpatialMeanNode not bound
!missing-type! MPSNNReshapeGradient not bound
!missing-type! MPSNNReshapeGradientNode not bound
!missing-type! MPSNNReshapeNode not bound
!missing-type! MPSNNUnaryReductionNode not bound

Просмотреть файл

@ -0,0 +1,2 @@
# Probably a mistake by Apple, see radar -> https://trello.com/c/WKIRTcLk
!missing-protocol! CTSubscriberDelegate not bound

Просмотреть файл

@ -17981,6 +17981,51 @@
<field name="Y" attrib="6" fieldtype="System.Byte[]" />
</fields>
</class>
<class name="IncrementalHash" type="class" base="System.Object" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />
</interfaces>
<properties>
<property name="AlgorithmName" attrib="0" ptype="System.Security.Cryptography.HashAlgorithmName">
<methods>
<method name="get_AlgorithmName()" attrib="2182" returntype="System.Security.Cryptography.HashAlgorithmName">
<parameters />
</method>
</methods>
</property>
</properties>
<methods>
<method name="AppendData(System.Byte[])" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="AppendData(System.Byte[], System.Int32, System.Int32)" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
<parameter name="offset" position="1" attrib="0" type="System.Int32" />
<parameter name="count" position="2" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CreateHMAC(System.Security.Cryptography.HashAlgorithmName, System.Byte[])" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
<parameter name="key" position="1" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="CreateHash(System.Security.Cryptography.HashAlgorithmName)" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
</parameters>
</method>
<method name="Dispose()" attrib="486" virtual="true" returntype="System.Void">
<parameters />
</method>
<method name="GetHashAndReset()" attrib="134" returntype="System.Byte[]">
<parameters />
</method>
</methods>
</class>
<class name="RSACng" type="class" base="System.Security.Cryptography.RSA" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />

Просмотреть файл

@ -79,6 +79,7 @@
<property name="CompilationRelaxations" value="8" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
<properties>
<property name="WrapNonExceptionThrows" value="True" />
@ -621,6 +622,30 @@
</method>
</methods>
</class>
<class name="DataContractSerializerExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer)" attrib="150" static="true" returntype="System.Runtime.Serialization.ISerializationSurrogateProvider">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
</parameters>
</method>
<method name="SetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer, System.Runtime.Serialization.ISerializationSurrogateProvider)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
<parameter name="provider" position="1" attrib="0" type="System.Runtime.Serialization.ISerializationSurrogateProvider" />
</parameters>
</method>
</methods>
</class>
<class name="DataContractSerializerSettings" type="class" base="System.Object" charset="Ansi" layout="Auto">
<constructors>
<constructor name=".ctor()" attrib="6278">
@ -1041,6 +1066,27 @@
</property>
</properties>
</class>
<class name="ISerializationSurrogateProvider" type="interface" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="GetDeserializedObject(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetObjectToSerialize(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetSurrogateType(System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Type">
<parameters>
<parameter name="type" position="0" attrib="0" type="System.Type" />
</parameters>
</method>
</methods>
</class>
<class name="IgnoreDataMemberAttribute" type="class" base="System.Attribute" sealed="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.AttributeUsageAttribute">

Просмотреть файл

@ -2760,6 +2760,21 @@
</method>
</methods>
</class>
<class name="XDocumentExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="ToXPathNavigable(System.Xml.Linq.XNode)" attrib="150" static="true" returntype="System.Xml.XPath.IXPathNavigable">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="node" position="0" attrib="0" type="System.Xml.Linq.XNode" direction="this" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
</namespaces>

Просмотреть файл

@ -259,6 +259,47 @@
</constructor>
</constructors>
</class>
<class name="StringNormalizationExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="IsNormalized(System.String)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="IsNormalized(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
<method name="Normalize(System.String)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="Normalize(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
</methods>
</class>
<class name="Uri" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.TypeConverterAttribute">
@ -3079,6 +3120,18 @@
<namespace name="System.Collections.ObjectModel">
<classes>
<class name="ObservableCollection`1" type="class" base="System.Collections.ObjectModel.Collection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3165,6 +3218,18 @@
</methods>
</class>
<class name="ReadOnlyObservableCollection`1" type="class" base="System.Collections.ObjectModel.ReadOnlyCollection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3306,6 +3371,9 @@
</methods>
<classes>
<class name="Section" type="struct" base="System.ValueType" sealed="true" charset="Ansi" layout="Sequential">
<attributes>
<attribute name="System.Runtime.CompilerServices.IsReadOnlyAttribute" />
</attributes>
<properties>
<property name="Mask" attrib="0" ptype="System.Int16">
<methods>
@ -3688,6 +3756,20 @@
</parameters>
</method>
</methods>
<classes>
<class name="DictionaryNode" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<fields>
<field name="key" attrib="6" fieldtype="System.Object" />
<field name="next" attrib="6" fieldtype="System.Collections.Specialized.ListDictionary+DictionaryNode" />
<field name="value" attrib="6" fieldtype="System.Object" />
</fields>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
</constructor>
</constructors>
</class>
</classes>
</class>
<class name="NameObjectCollectionBase" type="class" base="System.Object" abstract="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
@ -4372,7 +4454,7 @@
<method name="GetEnumerator()" attrib="454" virtual="true" returntype="System.Collections.IDictionaryEnumerator">
<parameters />
</method>
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="16838" virtual="true" returntype="System.Void">
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="454" virtual="true" returntype="System.Void">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -4518,12 +4600,6 @@
</class>
<class name="StringDictionary" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.Design.Serialization.DesignerSerializerAttribute">
<properties>
<property name="SerializerTypeName" value="System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<property name="SerializerBaseTypeName" value="System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -21237,6 +21313,61 @@
</method>
</methods>
</class>
<class name="StackFrameExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetNativeIP(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="GetNativeImageBase(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasILOffset(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasMethod(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasNativeImage(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasSource(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
</methods>
</class>
<class name="Stopwatch" type="class" base="System.Object" charset="Ansi" layout="Auto">
<fields>
<field name="Frequency" attrib="54" fieldtype="System.Int64" />
@ -23375,9 +23506,15 @@
<property name="ChangeType" attrib="0" ptype="System.IO.WatcherChangeTypes">
<methods>
<method name="get_ChangeType()" attrib="2182" returntype="System.IO.WatcherChangeTypes">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_ChangeType(System.IO.WatcherChangeTypes)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.IO.WatcherChangeTypes" />
</parameters>
@ -23387,9 +23524,15 @@
<property name="Name" attrib="0" ptype="System.String">
<methods>
<method name="get_Name()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Name(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23399,9 +23542,15 @@
<property name="OldName" attrib="0" ptype="System.String">
<methods>
<method name="get_OldName()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_OldName(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23411,9 +23560,15 @@
<property name="TimedOut" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_TimedOut()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_TimedOut(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -25321,8 +25476,19 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<properties>
<property name="CachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_CachePolicy()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_CachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2246" virtual="true" is-override="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="ClientCertificates" attrib="0" ptype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<attributes />
<methods>
<method name="get_ClientCertificates()" attrib="2182" returntype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<parameters />
@ -25335,7 +25501,6 @@
</methods>
</property>
<property name="ConnectionGroupName" attrib="0" ptype="System.String">
<attributes />
<methods>
<method name="get_ConnectionGroupName()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
@ -25395,6 +25560,18 @@
</method>
</methods>
</property>
<property name="DefaultCachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_DefaultCachePolicy()" attrib="2198" static="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_DefaultCachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2198" static="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="EnableSsl" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_EnableSsl()" attrib="2182" returntype="System.Boolean">
@ -25408,7 +25585,6 @@
</methods>
</property>
<property name="Headers" attrib="0" ptype="System.Net.WebHeaderCollection">
<attributes />
<methods>
<method name="get_Headers()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.WebHeaderCollection">
<parameters />
@ -25421,7 +25597,6 @@
</methods>
</property>
<property name="KeepAlive" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_KeepAlive()" attrib="2182" returntype="System.Boolean">
<parameters />
@ -25532,7 +25707,6 @@
</methods>
</property>
<property name="UseDefaultCredentials" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_UseDefaultCredentials()" attrib="2246" virtual="true" is-override="true" returntype="System.Boolean">
<parameters />
@ -41096,6 +41270,34 @@
</class>
</classes>
</namespace>
<namespace name="System.Security">
<classes>
<class name="SecureStringMarshal" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="SecureStringToCoTaskMemAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToCoTaskMemUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
<namespace name="System.Security.AccessControl">
<classes>
<class name="SemaphoreAccessRule" type="class" base="System.Security.AccessControl.AccessRule" sealed="true" charset="Ansi" layout="Auto">
@ -43810,6 +44012,16 @@
</class>
<class name="CaptureCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Capture&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43817,8 +44029,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43830,7 +44048,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43844,7 +44062,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Capture" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Capture">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Capture">
<parameters>
<parameter name="i" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43866,6 +44084,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Capture[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Capture[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43905,6 +44129,16 @@
</class>
<class name="GroupCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Group&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43912,8 +44146,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43925,7 +44165,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43939,7 +44179,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Group" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Group">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Group">
<parameters>
<parameter name="groupnum" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43970,6 +44210,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Group[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Group[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -44010,6 +44256,16 @@
</class>
<class name="MatchCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Match&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -44017,8 +44273,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -44030,7 +44292,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -44066,12 +44328,18 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Match[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Match[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
</methods>
</class>
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.ICloneable" />
<interface name="System.Runtime.Serialization.ISerializable" />
@ -44109,21 +44377,13 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>
<field name="InfiniteMatchTimeout" attrib="182" fieldtype="System.TimeSpan" />
<field name="InfiniteMatchTimeout" attrib="54" fieldtype="System.TimeSpan" />
<field name="capnames" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="caps" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="capsize" attrib="5" fieldtype="System.Int32" />
<field name="capslist" attrib="5" fieldtype="System.String[]" />
<field name="factory" attrib="5" fieldtype="System.Text.RegularExpressions.RegexRunnerFactory" />
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.Serialization.OptionalFieldAttribute">
<properties>
<property name="VersionAdded" value="2" />
</properties>
</attribute>
</attributes>
</field>
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan" />
<field name="pattern" attrib="5" fieldtype="System.String" />
<field name="roptions" attrib="5" fieldtype="System.Text.RegularExpressions.RegexOptions" />
</fields>
@ -44497,7 +44757,7 @@
<method name="UseOptionC()" attrib="132" returntype="System.Boolean">
<parameters />
</method>
<method name="UseOptionR()" attrib="132" returntype="System.Boolean">
<method name="UseOptionR()" attrib="133" returntype="System.Boolean">
<parameters />
</method>
<method name="ValidateMatchTimeout(System.TimeSpan)" attrib="149" static="true" returntype="System.Void">
@ -44533,9 +44793,15 @@
<property name="IsPublic" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsPublic()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_IsPublic(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -44581,9 +44847,15 @@
<property name="Options" attrib="0" ptype="System.Text.RegularExpressions.RegexOptions">
<methods>
<method name="get_Options()" attrib="2182" returntype="System.Text.RegularExpressions.RegexOptions">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Options(System.Text.RegularExpressions.RegexOptions)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Text.RegularExpressions.RegexOptions" />
</parameters>
@ -44617,7 +44889,7 @@
<parameter name="message" position="0" attrib="0" type="System.String" />
</parameters>
</constructor>
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="22660">
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="6276">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -44640,21 +44912,30 @@
<properties>
<property name="Input" attrib="0" ptype="System.String">
<methods>
<method name="get_Input()" attrib="18566" returntype="System.String">
<method name="get_Input()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="MatchTimeout" attrib="0" ptype="System.TimeSpan">
<methods>
<method name="get_MatchTimeout()" attrib="18566" returntype="System.TimeSpan">
<method name="get_MatchTimeout()" attrib="2182" returntype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="Pattern" attrib="0" ptype="System.String">
<methods>
<method name="get_Pattern()" attrib="18566" returntype="System.String">
<method name="get_Pattern()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
@ -44684,13 +44965,6 @@
</fields>
</class>
<class name="RegexRunner" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<fields>
<field name="runcrawl" attrib="5" fieldtype="System.Int32[]" />
<field name="runcrawlpos" attrib="5" fieldtype="System.Int32" />
@ -44834,13 +45108,6 @@
</methods>
</class>
<class name="RegexRunnerFactory" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />

Просмотреть файл

@ -16,7 +16,7 @@
</attribute>
<attribute name="System.Reflection.AssemblyInformationalVersionAttribute">
<properties>
<property name="InformationalVersion" value="12.0.0.15; git-rev-head:84552a46022bfeb69c69617601420d4521ca6a85; git-branch:xcode10" />
<property name="InformationalVersion" value="12.2.1.9; git-rev-head:62840955457733add681d6d929e5b618292e07df; git-branch:d15-9" />
</properties>
</attribute>
<attribute name="System.Reflection.AssemblyProductAttribute">
@ -37,7 +37,7 @@
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<properties>
<property name="AssemblyName" value="System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
<property name="AssemblyName" value="System.Net.Http,PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
@ -196185,6 +196185,13 @@
</method>
</methods>
</property>
<property name="Message" attrib="0" ptype="System.String">
<methods>
<method name="get_Message()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
</method>
</methods>
</property>
<property name="UserInfo" attrib="0" ptype="Foundation.NSDictionary">
<methods>
<method name="get_UserInfo()" attrib="2182" returntype="Foundation.NSDictionary">
@ -266092,6 +266099,29 @@
</method>
</methods>
</property>
<property name="LeftThumbstickButton" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_LeftThumbstickButton()" attrib="2502" virtual="true" returntype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="leftThumbstickButton" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="LeftTrigger" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
@ -266143,6 +266173,29 @@
</method>
</methods>
</property>
<property name="RightThumbstickButton" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_RightThumbstickButton()" attrib="2502" virtual="true" returntype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="rightThumbstickButton" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="RightTrigger" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
@ -412146,7 +412199,7 @@
<field name="QuartzLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/QuartzCore.framework/QuartzCore" />
<field name="ReplayKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/ReplayKit.framework/ReplayKit" />
<field name="SceneKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SceneKit.framework/SceneKit" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="12.0" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="12.1" />
<field name="SecurityLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Security.framework/Security" />
<field name="SpriteKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SpriteKit.framework/SpriteKit" />
<field name="StoreKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/StoreKit.framework/StoreKit" />
@ -412155,7 +412208,7 @@
<field name="TVServicesLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/TVServices.framework/TVServices" />
<field name="UIKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UIKit.framework/UIKit" />
<field name="UserNotificationsLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UserNotifications.framework/UserNotifications" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.0.0" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.2.1" />
<field name="VideoSubscriberAccountLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount" />
<field name="VideoToolboxLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox" />
<field name="VisionLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Vision.framework/Vision" />
@ -413348,6 +413401,18 @@
<parameter name="a" position="0" attrib="0" type="System.Reflection.Assembly" />
</parameters>
</method>
<method name="ReleaseBlockOnMainThread(System.IntPtr)" attrib="8342" static="true" returntype="System.Void">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="block" position="0" attrib="0" type="System.IntPtr" />
</parameters>
</method>
<method name="StartWWAN(System.Uri)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.AdviceAttribute" />
@ -481652,6 +481717,12 @@
</parameters>
</method>
<method name="Evaluate()" attrib="134" returntype="Security.SecTrustResult">
<attributes>
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
</attributes>
<parameters />
</method>
<method name="Evaluate(out Foundation.NSError&amp;)" attrib="134" returntype="System.Boolean">
@ -582737,9 +582808,6 @@
<property name="ContentOffset" attrib="0" ptype="CoreGraphics.CGPoint">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<methods>
<method name="get_ContentOffset()" attrib="2502" virtual="true" returntype="CoreGraphics.CGPoint">
@ -582747,7 +582815,6 @@
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="contentOffset" />
<property name="ArgumentSemantic" value="Assign" />
</properties>
</attribute>
</attributes>
@ -582758,7 +582825,6 @@
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setContentOffset:" />
<property name="ArgumentSemantic" value="Assign" />
</properties>
</attribute>
</attributes>

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -17981,6 +17981,51 @@
<field name="Y" attrib="6" fieldtype="System.Byte[]" />
</fields>
</class>
<class name="IncrementalHash" type="class" base="System.Object" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />
</interfaces>
<properties>
<property name="AlgorithmName" attrib="0" ptype="System.Security.Cryptography.HashAlgorithmName">
<methods>
<method name="get_AlgorithmName()" attrib="2182" returntype="System.Security.Cryptography.HashAlgorithmName">
<parameters />
</method>
</methods>
</property>
</properties>
<methods>
<method name="AppendData(System.Byte[])" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="AppendData(System.Byte[], System.Int32, System.Int32)" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
<parameter name="offset" position="1" attrib="0" type="System.Int32" />
<parameter name="count" position="2" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CreateHMAC(System.Security.Cryptography.HashAlgorithmName, System.Byte[])" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
<parameter name="key" position="1" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="CreateHash(System.Security.Cryptography.HashAlgorithmName)" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
</parameters>
</method>
<method name="Dispose()" attrib="486" virtual="true" returntype="System.Void">
<parameters />
</method>
<method name="GetHashAndReset()" attrib="134" returntype="System.Byte[]">
<parameters />
</method>
</methods>
</class>
<class name="RSACng" type="class" base="System.Security.Cryptography.RSA" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />

Просмотреть файл

@ -79,6 +79,7 @@
<property name="CompilationRelaxations" value="8" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
<properties>
<property name="WrapNonExceptionThrows" value="True" />
@ -621,6 +622,30 @@
</method>
</methods>
</class>
<class name="DataContractSerializerExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer)" attrib="150" static="true" returntype="System.Runtime.Serialization.ISerializationSurrogateProvider">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
</parameters>
</method>
<method name="SetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer, System.Runtime.Serialization.ISerializationSurrogateProvider)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
<parameter name="provider" position="1" attrib="0" type="System.Runtime.Serialization.ISerializationSurrogateProvider" />
</parameters>
</method>
</methods>
</class>
<class name="DataContractSerializerSettings" type="class" base="System.Object" charset="Ansi" layout="Auto">
<constructors>
<constructor name=".ctor()" attrib="6278">
@ -1041,6 +1066,27 @@
</property>
</properties>
</class>
<class name="ISerializationSurrogateProvider" type="interface" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="GetDeserializedObject(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetObjectToSerialize(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetSurrogateType(System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Type">
<parameters>
<parameter name="type" position="0" attrib="0" type="System.Type" />
</parameters>
</method>
</methods>
</class>
<class name="IgnoreDataMemberAttribute" type="class" base="System.Attribute" sealed="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.AttributeUsageAttribute">

Просмотреть файл

@ -2760,6 +2760,21 @@
</method>
</methods>
</class>
<class name="XDocumentExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="ToXPathNavigable(System.Xml.Linq.XNode)" attrib="150" static="true" returntype="System.Xml.XPath.IXPathNavigable">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="node" position="0" attrib="0" type="System.Xml.Linq.XNode" direction="this" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
</namespaces>

Просмотреть файл

@ -259,6 +259,47 @@
</constructor>
</constructors>
</class>
<class name="StringNormalizationExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="IsNormalized(System.String)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="IsNormalized(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
<method name="Normalize(System.String)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="Normalize(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
</methods>
</class>
<class name="Uri" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.TypeConverterAttribute">
@ -3079,6 +3120,18 @@
<namespace name="System.Collections.ObjectModel">
<classes>
<class name="ObservableCollection`1" type="class" base="System.Collections.ObjectModel.Collection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3165,6 +3218,18 @@
</methods>
</class>
<class name="ReadOnlyObservableCollection`1" type="class" base="System.Collections.ObjectModel.ReadOnlyCollection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3306,6 +3371,9 @@
</methods>
<classes>
<class name="Section" type="struct" base="System.ValueType" sealed="true" charset="Ansi" layout="Sequential">
<attributes>
<attribute name="System.Runtime.CompilerServices.IsReadOnlyAttribute" />
</attributes>
<properties>
<property name="Mask" attrib="0" ptype="System.Int16">
<methods>
@ -3688,6 +3756,20 @@
</parameters>
</method>
</methods>
<classes>
<class name="DictionaryNode" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<fields>
<field name="key" attrib="6" fieldtype="System.Object" />
<field name="next" attrib="6" fieldtype="System.Collections.Specialized.ListDictionary+DictionaryNode" />
<field name="value" attrib="6" fieldtype="System.Object" />
</fields>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
</constructor>
</constructors>
</class>
</classes>
</class>
<class name="NameObjectCollectionBase" type="class" base="System.Object" abstract="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
@ -4372,7 +4454,7 @@
<method name="GetEnumerator()" attrib="454" virtual="true" returntype="System.Collections.IDictionaryEnumerator">
<parameters />
</method>
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="16838" virtual="true" returntype="System.Void">
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="454" virtual="true" returntype="System.Void">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -4518,12 +4600,6 @@
</class>
<class name="StringDictionary" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.Design.Serialization.DesignerSerializerAttribute">
<properties>
<property name="SerializerTypeName" value="System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<property name="SerializerBaseTypeName" value="System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -21237,6 +21313,61 @@
</method>
</methods>
</class>
<class name="StackFrameExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetNativeIP(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="GetNativeImageBase(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasILOffset(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasMethod(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasNativeImage(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasSource(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
</methods>
</class>
<class name="Stopwatch" type="class" base="System.Object" charset="Ansi" layout="Auto">
<fields>
<field name="Frequency" attrib="54" fieldtype="System.Int64" />
@ -23375,9 +23506,15 @@
<property name="ChangeType" attrib="0" ptype="System.IO.WatcherChangeTypes">
<methods>
<method name="get_ChangeType()" attrib="2182" returntype="System.IO.WatcherChangeTypes">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_ChangeType(System.IO.WatcherChangeTypes)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.IO.WatcherChangeTypes" />
</parameters>
@ -23387,9 +23524,15 @@
<property name="Name" attrib="0" ptype="System.String">
<methods>
<method name="get_Name()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Name(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23399,9 +23542,15 @@
<property name="OldName" attrib="0" ptype="System.String">
<methods>
<method name="get_OldName()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_OldName(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23411,9 +23560,15 @@
<property name="TimedOut" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_TimedOut()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_TimedOut(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -40951,6 +41106,34 @@
</class>
</classes>
</namespace>
<namespace name="System.Security">
<classes>
<class name="SecureStringMarshal" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="SecureStringToCoTaskMemAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToCoTaskMemUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
<namespace name="System.Security.AccessControl">
<classes>
<class name="SemaphoreAccessRule" type="class" base="System.Security.AccessControl.AccessRule" sealed="true" charset="Ansi" layout="Auto">
@ -43665,6 +43848,16 @@
</class>
<class name="CaptureCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Capture&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43672,8 +43865,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43685,7 +43884,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43699,7 +43898,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Capture" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Capture">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Capture">
<parameters>
<parameter name="i" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43721,6 +43920,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Capture[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Capture[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43760,6 +43965,16 @@
</class>
<class name="GroupCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Group&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43767,8 +43982,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43780,7 +44001,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43794,7 +44015,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Group" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Group">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Group">
<parameters>
<parameter name="groupnum" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43825,6 +44046,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Group[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Group[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43865,6 +44092,16 @@
</class>
<class name="MatchCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Match&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43872,8 +44109,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43885,7 +44128,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43921,12 +44164,18 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Match[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Match[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
</methods>
</class>
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.ICloneable" />
<interface name="System.Runtime.Serialization.ISerializable" />
@ -43964,21 +44213,13 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>
<field name="InfiniteMatchTimeout" attrib="182" fieldtype="System.TimeSpan" />
<field name="InfiniteMatchTimeout" attrib="54" fieldtype="System.TimeSpan" />
<field name="capnames" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="caps" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="capsize" attrib="5" fieldtype="System.Int32" />
<field name="capslist" attrib="5" fieldtype="System.String[]" />
<field name="factory" attrib="5" fieldtype="System.Text.RegularExpressions.RegexRunnerFactory" />
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.Serialization.OptionalFieldAttribute">
<properties>
<property name="VersionAdded" value="2" />
</properties>
</attribute>
</attributes>
</field>
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan" />
<field name="pattern" attrib="5" fieldtype="System.String" />
<field name="roptions" attrib="5" fieldtype="System.Text.RegularExpressions.RegexOptions" />
</fields>
@ -44352,7 +44593,7 @@
<method name="UseOptionC()" attrib="132" returntype="System.Boolean">
<parameters />
</method>
<method name="UseOptionR()" attrib="132" returntype="System.Boolean">
<method name="UseOptionR()" attrib="133" returntype="System.Boolean">
<parameters />
</method>
<method name="ValidateMatchTimeout(System.TimeSpan)" attrib="149" static="true" returntype="System.Void">
@ -44388,9 +44629,15 @@
<property name="IsPublic" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsPublic()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_IsPublic(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -44436,9 +44683,15 @@
<property name="Options" attrib="0" ptype="System.Text.RegularExpressions.RegexOptions">
<methods>
<method name="get_Options()" attrib="2182" returntype="System.Text.RegularExpressions.RegexOptions">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Options(System.Text.RegularExpressions.RegexOptions)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Text.RegularExpressions.RegexOptions" />
</parameters>
@ -44472,7 +44725,7 @@
<parameter name="message" position="0" attrib="0" type="System.String" />
</parameters>
</constructor>
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="22660">
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="6276">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -44495,21 +44748,30 @@
<properties>
<property name="Input" attrib="0" ptype="System.String">
<methods>
<method name="get_Input()" attrib="18566" returntype="System.String">
<method name="get_Input()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="MatchTimeout" attrib="0" ptype="System.TimeSpan">
<methods>
<method name="get_MatchTimeout()" attrib="18566" returntype="System.TimeSpan">
<method name="get_MatchTimeout()" attrib="2182" returntype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="Pattern" attrib="0" ptype="System.String">
<methods>
<method name="get_Pattern()" attrib="18566" returntype="System.String">
<method name="get_Pattern()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
@ -44539,13 +44801,6 @@
</fields>
</class>
<class name="RegexRunner" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<fields>
<field name="runcrawl" attrib="5" fieldtype="System.Int32[]" />
<field name="runcrawlpos" attrib="5" fieldtype="System.Int32" />
@ -44689,13 +44944,6 @@
</methods>
</class>
<class name="RegexRunnerFactory" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />

Просмотреть файл

@ -16,7 +16,7 @@
</attribute>
<attribute name="System.Reflection.AssemblyInformationalVersionAttribute">
<properties>
<property name="InformationalVersion" value="12.0.0.15; git-rev-head:84552a46022bfeb69c69617601420d4521ca6a85; git-branch:xcode10" />
<property name="InformationalVersion" value="12.2.1.9; git-rev-head:62840955457733add681d6d929e5b618292e07df; git-branch:d15-9" />
</properties>
</attribute>
<attribute name="System.Reflection.AssemblyProductAttribute">
@ -37,7 +37,7 @@
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<properties>
<property name="AssemblyName" value="System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
<property name="AssemblyName" value="System.Net.Http,PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
@ -113514,6 +113514,13 @@
</method>
</methods>
</property>
<property name="Message" attrib="0" ptype="System.String">
<methods>
<method name="get_Message()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
</method>
</methods>
</property>
<property name="UserInfo" attrib="0" ptype="Foundation.NSDictionary">
<methods>
<method name="get_UserInfo()" attrib="2182" returntype="Foundation.NSDictionary">
@ -231773,6 +231780,7 @@
<field name="InteractionOperationNotSupported" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="1900" />
<field name="InvalidIntentName" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2004" />
<field name="InvalidUserVocabularyFileLocation" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="4000" />
<field name="MissingInformation" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="3002" />
<field name="NoAppAvailable" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2005" />
<field name="NoHandlerProvidedForIntent" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2003" />
<field name="PermissionDenied" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="6010" />
@ -265943,12 +265951,12 @@
<field name="ObjectiveCLibrary" attrib="32854" fieldtype="System.String" value="/usr/lib/libobjc.dylib" />
<field name="PassKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/PassKit.framework/PassKit" />
<field name="SceneKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SceneKit.framework/SceneKit" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="5.0" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="5.1" />
<field name="SecurityLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Security.framework/Security" />
<field name="SpriteKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SpriteKit.framework/SpriteKit" />
<field name="UIKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UIKit.framework/UIKit" />
<field name="UserNotificationsLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UserNotifications.framework/UserNotifications" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.0.0" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.2.1" />
<field name="VisionLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Vision.framework/Vision" />
<field name="WatchConnectivityLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/WatchConnectivity.framework/WatchConnectivity" />
<field name="WatchKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/WatchKit.framework/WatchKit" />
@ -267141,6 +267149,18 @@
<parameter name="a" position="0" attrib="0" type="System.Reflection.Assembly" />
</parameters>
</method>
<method name="ReleaseBlockOnMainThread(System.IntPtr)" attrib="8342" static="true" returntype="System.Void">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="block" position="0" attrib="0" type="System.IntPtr" />
</parameters>
</method>
<method name="StartWWAN(System.Uri)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.AdviceAttribute" />
@ -323089,6 +323109,12 @@
</parameters>
</method>
<method name="Evaluate()" attrib="134" returntype="Security.SecTrustResult">
<attributes>
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
</attributes>
<parameters />
</method>
<method name="Evaluate(out Foundation.NSError&amp;)" attrib="134" returntype="System.Boolean">

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -17981,6 +17981,51 @@
<field name="Y" attrib="6" fieldtype="System.Byte[]" />
</fields>
</class>
<class name="IncrementalHash" type="class" base="System.Object" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />
</interfaces>
<properties>
<property name="AlgorithmName" attrib="0" ptype="System.Security.Cryptography.HashAlgorithmName">
<methods>
<method name="get_AlgorithmName()" attrib="2182" returntype="System.Security.Cryptography.HashAlgorithmName">
<parameters />
</method>
</methods>
</property>
</properties>
<methods>
<method name="AppendData(System.Byte[])" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="AppendData(System.Byte[], System.Int32, System.Int32)" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
<parameter name="offset" position="1" attrib="0" type="System.Int32" />
<parameter name="count" position="2" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CreateHMAC(System.Security.Cryptography.HashAlgorithmName, System.Byte[])" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
<parameter name="key" position="1" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="CreateHash(System.Security.Cryptography.HashAlgorithmName)" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
</parameters>
</method>
<method name="Dispose()" attrib="486" virtual="true" returntype="System.Void">
<parameters />
</method>
<method name="GetHashAndReset()" attrib="134" returntype="System.Byte[]">
<parameters />
</method>
</methods>
</class>
<class name="RSACng" type="class" base="System.Security.Cryptography.RSA" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />

Просмотреть файл

@ -79,6 +79,7 @@
<property name="CompilationRelaxations" value="8" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
<properties>
<property name="WrapNonExceptionThrows" value="True" />
@ -621,6 +622,30 @@
</method>
</methods>
</class>
<class name="DataContractSerializerExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer)" attrib="150" static="true" returntype="System.Runtime.Serialization.ISerializationSurrogateProvider">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
</parameters>
</method>
<method name="SetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer, System.Runtime.Serialization.ISerializationSurrogateProvider)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
<parameter name="provider" position="1" attrib="0" type="System.Runtime.Serialization.ISerializationSurrogateProvider" />
</parameters>
</method>
</methods>
</class>
<class name="DataContractSerializerSettings" type="class" base="System.Object" charset="Ansi" layout="Auto">
<constructors>
<constructor name=".ctor()" attrib="6278">
@ -1041,6 +1066,27 @@
</property>
</properties>
</class>
<class name="ISerializationSurrogateProvider" type="interface" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="GetDeserializedObject(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetObjectToSerialize(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetSurrogateType(System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Type">
<parameters>
<parameter name="type" position="0" attrib="0" type="System.Type" />
</parameters>
</method>
</methods>
</class>
<class name="IgnoreDataMemberAttribute" type="class" base="System.Attribute" sealed="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.AttributeUsageAttribute">

Просмотреть файл

@ -2760,6 +2760,21 @@
</method>
</methods>
</class>
<class name="XDocumentExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="ToXPathNavigable(System.Xml.Linq.XNode)" attrib="150" static="true" returntype="System.Xml.XPath.IXPathNavigable">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="node" position="0" attrib="0" type="System.Xml.Linq.XNode" direction="this" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
</namespaces>

Просмотреть файл

@ -259,6 +259,47 @@
</constructor>
</constructors>
</class>
<class name="StringNormalizationExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="IsNormalized(System.String)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="IsNormalized(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
<method name="Normalize(System.String)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="Normalize(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
</methods>
</class>
<class name="Uri" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.TypeConverterAttribute">
@ -3079,6 +3120,18 @@
<namespace name="System.Collections.ObjectModel">
<classes>
<class name="ObservableCollection`1" type="class" base="System.Collections.ObjectModel.Collection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3165,6 +3218,18 @@
</methods>
</class>
<class name="ReadOnlyObservableCollection`1" type="class" base="System.Collections.ObjectModel.ReadOnlyCollection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3306,6 +3371,9 @@
</methods>
<classes>
<class name="Section" type="struct" base="System.ValueType" sealed="true" charset="Ansi" layout="Sequential">
<attributes>
<attribute name="System.Runtime.CompilerServices.IsReadOnlyAttribute" />
</attributes>
<properties>
<property name="Mask" attrib="0" ptype="System.Int16">
<methods>
@ -3688,6 +3756,20 @@
</parameters>
</method>
</methods>
<classes>
<class name="DictionaryNode" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<fields>
<field name="key" attrib="6" fieldtype="System.Object" />
<field name="next" attrib="6" fieldtype="System.Collections.Specialized.ListDictionary+DictionaryNode" />
<field name="value" attrib="6" fieldtype="System.Object" />
</fields>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
</constructor>
</constructors>
</class>
</classes>
</class>
<class name="NameObjectCollectionBase" type="class" base="System.Object" abstract="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
@ -4372,7 +4454,7 @@
<method name="GetEnumerator()" attrib="454" virtual="true" returntype="System.Collections.IDictionaryEnumerator">
<parameters />
</method>
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="16838" virtual="true" returntype="System.Void">
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="454" virtual="true" returntype="System.Void">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -4518,12 +4600,6 @@
</class>
<class name="StringDictionary" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.Design.Serialization.DesignerSerializerAttribute">
<properties>
<property name="SerializerTypeName" value="System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<property name="SerializerBaseTypeName" value="System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -21205,6 +21281,61 @@
</method>
</methods>
</class>
<class name="StackFrameExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetNativeIP(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="GetNativeImageBase(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasILOffset(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasMethod(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasNativeImage(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasSource(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
</methods>
</class>
<class name="Stopwatch" type="class" base="System.Object" charset="Ansi" layout="Auto">
<fields>
<field name="Frequency" attrib="54" fieldtype="System.Int64" />
@ -23343,9 +23474,15 @@
<property name="ChangeType" attrib="0" ptype="System.IO.WatcherChangeTypes">
<methods>
<method name="get_ChangeType()" attrib="2182" returntype="System.IO.WatcherChangeTypes">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_ChangeType(System.IO.WatcherChangeTypes)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.IO.WatcherChangeTypes" />
</parameters>
@ -23355,9 +23492,15 @@
<property name="Name" attrib="0" ptype="System.String">
<methods>
<method name="get_Name()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Name(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23367,9 +23510,15 @@
<property name="OldName" attrib="0" ptype="System.String">
<methods>
<method name="get_OldName()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_OldName(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23379,9 +23528,15 @@
<property name="TimedOut" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_TimedOut()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_TimedOut(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -25289,8 +25444,19 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<properties>
<property name="CachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_CachePolicy()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_CachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2246" virtual="true" is-override="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="ClientCertificates" attrib="0" ptype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<attributes />
<methods>
<method name="get_ClientCertificates()" attrib="2182" returntype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<parameters />
@ -25303,7 +25469,6 @@
</methods>
</property>
<property name="ConnectionGroupName" attrib="0" ptype="System.String">
<attributes />
<methods>
<method name="get_ConnectionGroupName()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
@ -25363,6 +25528,18 @@
</method>
</methods>
</property>
<property name="DefaultCachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_DefaultCachePolicy()" attrib="2198" static="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_DefaultCachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2198" static="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="EnableSsl" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_EnableSsl()" attrib="2182" returntype="System.Boolean">
@ -25376,7 +25553,6 @@
</methods>
</property>
<property name="Headers" attrib="0" ptype="System.Net.WebHeaderCollection">
<attributes />
<methods>
<method name="get_Headers()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.WebHeaderCollection">
<parameters />
@ -25389,7 +25565,6 @@
</methods>
</property>
<property name="KeepAlive" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_KeepAlive()" attrib="2182" returntype="System.Boolean">
<parameters />
@ -25500,7 +25675,6 @@
</methods>
</property>
<property name="UseDefaultCredentials" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_UseDefaultCredentials()" attrib="2246" virtual="true" is-override="true" returntype="System.Boolean">
<parameters />
@ -41064,6 +41238,34 @@
</class>
</classes>
</namespace>
<namespace name="System.Security">
<classes>
<class name="SecureStringMarshal" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="SecureStringToCoTaskMemAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToCoTaskMemUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
<namespace name="System.Security.AccessControl">
<classes>
<class name="SemaphoreAccessRule" type="class" base="System.Security.AccessControl.AccessRule" sealed="true" charset="Ansi" layout="Auto">
@ -43778,6 +43980,16 @@
</class>
<class name="CaptureCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Capture&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43785,8 +43997,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43798,7 +44016,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43812,7 +44030,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Capture" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Capture">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Capture">
<parameters>
<parameter name="i" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43834,6 +44052,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Capture[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Capture[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43873,6 +44097,16 @@
</class>
<class name="GroupCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Group&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43880,8 +44114,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43893,7 +44133,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43907,7 +44147,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Group" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Group">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Group">
<parameters>
<parameter name="groupnum" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43938,6 +44178,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Group[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Group[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43978,6 +44224,16 @@
</class>
<class name="MatchCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Match&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43985,8 +44241,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43998,7 +44260,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -44034,12 +44296,18 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Match[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Match[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
</methods>
</class>
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.ICloneable" />
<interface name="System.Runtime.Serialization.ISerializable" />
@ -44077,21 +44345,13 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>
<field name="InfiniteMatchTimeout" attrib="182" fieldtype="System.TimeSpan" />
<field name="InfiniteMatchTimeout" attrib="54" fieldtype="System.TimeSpan" />
<field name="capnames" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="caps" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="capsize" attrib="5" fieldtype="System.Int32" />
<field name="capslist" attrib="5" fieldtype="System.String[]" />
<field name="factory" attrib="5" fieldtype="System.Text.RegularExpressions.RegexRunnerFactory" />
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.Serialization.OptionalFieldAttribute">
<properties>
<property name="VersionAdded" value="2" />
</properties>
</attribute>
</attributes>
</field>
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan" />
<field name="pattern" attrib="5" fieldtype="System.String" />
<field name="roptions" attrib="5" fieldtype="System.Text.RegularExpressions.RegexOptions" />
</fields>
@ -44465,7 +44725,7 @@
<method name="UseOptionC()" attrib="132" returntype="System.Boolean">
<parameters />
</method>
<method name="UseOptionR()" attrib="132" returntype="System.Boolean">
<method name="UseOptionR()" attrib="133" returntype="System.Boolean">
<parameters />
</method>
<method name="ValidateMatchTimeout(System.TimeSpan)" attrib="149" static="true" returntype="System.Void">
@ -44501,9 +44761,15 @@
<property name="IsPublic" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsPublic()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_IsPublic(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -44549,9 +44815,15 @@
<property name="Options" attrib="0" ptype="System.Text.RegularExpressions.RegexOptions">
<methods>
<method name="get_Options()" attrib="2182" returntype="System.Text.RegularExpressions.RegexOptions">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Options(System.Text.RegularExpressions.RegexOptions)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Text.RegularExpressions.RegexOptions" />
</parameters>
@ -44585,7 +44857,7 @@
<parameter name="message" position="0" attrib="0" type="System.String" />
</parameters>
</constructor>
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="22660">
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="6276">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -44608,21 +44880,30 @@
<properties>
<property name="Input" attrib="0" ptype="System.String">
<methods>
<method name="get_Input()" attrib="18566" returntype="System.String">
<method name="get_Input()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="MatchTimeout" attrib="0" ptype="System.TimeSpan">
<methods>
<method name="get_MatchTimeout()" attrib="18566" returntype="System.TimeSpan">
<method name="get_MatchTimeout()" attrib="2182" returntype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="Pattern" attrib="0" ptype="System.String">
<methods>
<method name="get_Pattern()" attrib="18566" returntype="System.String">
<method name="get_Pattern()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
@ -44652,13 +44933,6 @@
</fields>
</class>
<class name="RegexRunner" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<fields>
<field name="runcrawl" attrib="5" fieldtype="System.Int32[]" />
<field name="runcrawlpos" attrib="5" fieldtype="System.Int32" />
@ -44802,13 +45076,6 @@
</methods>
</class>
<class name="RegexRunnerFactory" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />

Просмотреть файл

@ -16,7 +16,7 @@
</attribute>
<attribute name="System.Reflection.AssemblyInformationalVersionAttribute">
<properties>
<property name="InformationalVersion" value="12.0.0.15; git-rev-head:84552a46022bfeb69c69617601420d4521ca6a85; git-branch:xcode10" />
<property name="InformationalVersion" value="12.2.1.9; git-rev-head:62840955457733add681d6d929e5b618292e07df; git-branch:d15-9" />
</properties>
</attribute>
<attribute name="System.Reflection.AssemblyProductAttribute">
@ -37,7 +37,7 @@
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<properties>
<property name="AssemblyName" value="System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
<property name="AssemblyName" value="System.Net.Http,PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
@ -249688,7 +249688,92 @@
</method>
</methods>
</property>
<property name="Delegate" attrib="0" ptype="CoreTelephony.ICTSubscriberDelegate">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_Delegate()" attrib="2182" returntype="CoreTelephony.ICTSubscriberDelegate">
<attributes>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Delegate(CoreTelephony.ICTSubscriberDelegate)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="CoreTelephony.ICTSubscriberDelegate" />
</parameters>
</method>
</methods>
</property>
<property name="Identifier" attrib="0" ptype="System.String">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_Identifier()" attrib="2502" virtual="true" returntype="System.String">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="identifier" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="WeakDelegate" attrib="0" ptype="Foundation.NSObject">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_WeakDelegate()" attrib="2502" virtual="true" returntype="Foundation.NSObject">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="delegate" />
<property name="ArgumentSemantic" value="Weak" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_WeakDelegate(Foundation.NSObject)" attrib="2502" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setDelegate:" />
<property name="ArgumentSemantic" value="Weak" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="Foundation.NSObject" />
</parameters>
</method>
</methods>
</property>
</properties>
<methods>
<method name="Dispose(System.Boolean)" attrib="196" virtual="true" is-override="true" returntype="System.Void">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<parameters>
<parameter name="disposing" position="0" attrib="0" type="System.Boolean" />
</parameters>
</method>
</methods>
</class>
<class name="CTSubscriberInfo" type="class" base="Foundation.NSObject" charset="Ansi" layout="Auto">
<attributes>
@ -249761,6 +249846,7 @@
<property name="Subscriber" attrib="0" ptype="CoreTelephony.CTSubscriber">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
</attributes>
<methods>
<method name="get_Subscriber()" attrib="2198" static="true" returntype="CoreTelephony.CTSubscriber">
@ -249770,6 +249856,26 @@
<property name="Selector" value="subscriber" />
</properties>
</attribute>
<attribute name="ObjCRuntime.DeprecatedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="Subscribers" attrib="0" ptype="CoreTelephony.CTSubscriber[]">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_Subscribers()" attrib="2198" static="true" returntype="CoreTelephony.CTSubscriber[]">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="subscribers" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
@ -250027,6 +250133,48 @@
</class>
</classes>
</class>
<class name="ICTSubscriberDelegate" type="interface" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.ProtocolAttribute">
<properties>
<property name="Name" value="CTSubscriberDelegate" />
<property name="WrapperType" value="CoreTelephony.CTSubscriberDelegateWrapper" />
</properties>
</attribute>
<attribute name="Foundation.ProtocolMemberAttribute">
<properties>
<property name="IsRequired" value="True" />
<property name="IsProperty" value="False" />
<property name="IsStatic" value="False" />
<property name="Name" value="SubscriberTokenRefreshed" />
<property name="Selector" value="subscriberTokenRefreshed:" />
<property name="ParameterType" value="Mono.Cecil.CustomAttributeArgument[]" />
<property name="ParameterByRef" value="Mono.Cecil.CustomAttributeArgument[]" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<interfaces>
<interface name="ObjCRuntime.INativeObject" />
<interface name="System.IDisposable" />
</interfaces>
<methods>
<method name="SubscriberTokenRefreshed(CoreTelephony.CTSubscriber)" attrib="1478" abstract="true" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="subscriberTokenRefreshed:" />
</properties>
</attribute>
<attribute name="Foundation.PreserveAttribute" />
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<parameters>
<parameter name="subscriber" position="0" attrib="0" type="CoreTelephony.CTSubscriber" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
<namespace name="CoreText">
@ -287960,6 +288108,13 @@
</method>
</methods>
</property>
<property name="Message" attrib="0" ptype="System.String">
<methods>
<method name="get_Message()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
</method>
</methods>
</property>
<property name="UserInfo" attrib="0" ptype="Foundation.NSDictionary">
<methods>
<method name="get_UserInfo()" attrib="2182" returntype="Foundation.NSDictionary">
@ -359687,6 +359842,29 @@
</method>
</methods>
</property>
<property name="LeftThumbstickButton" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_LeftThumbstickButton()" attrib="2502" virtual="true" returntype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="leftThumbstickButton" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="LeftTrigger" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
@ -359738,6 +359916,29 @@
</method>
</methods>
</property>
<property name="RightThumbstickButton" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_RightThumbstickButton()" attrib="2502" virtual="true" returntype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="rightThumbstickButton" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="RightTrigger" attrib="0" ptype="GameController.GCControllerButtonInput">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
@ -422990,6 +423191,38 @@
</method>
</methods>
</property>
<property name="UserString" attrib="0" ptype="System.String">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<methods>
<method name="get_UserString()" attrib="2502" virtual="true" returntype="System.String">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="userString" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_UserString(System.String)" attrib="2502" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setUserString:" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
</method>
</methods>
</property>
</properties>
<methods>
<method name="EncodeTo(Foundation.NSCoder)" attrib="454" virtual="true" returntype="System.Void">
@ -452304,6 +452537,7 @@
<field name="InteractionOperationNotSupported" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="1900" />
<field name="InvalidIntentName" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2004" />
<field name="InvalidUserVocabularyFileLocation" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="4000" />
<field name="MissingInformation" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="3002" />
<field name="NoAppAvailable" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2005" />
<field name="NoHandlerProvidedForIntent" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="2003" />
<field name="PermissionDenied" attrib="32854" fieldtype="Intents.INIntentErrorCode" value="6010" />
@ -618003,7 +618237,7 @@
<field name="ReplayKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/ReplayKit.framework/ReplayKit" />
<field name="SafariServicesLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SafariServices.framework/SafariServices" />
<field name="SceneKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/SceneKit.framework/SceneKit" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="12.0" />
<field name="SdkVersion" attrib="32854" fieldtype="System.String" value="12.1" />
<field name="SecurityLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Security.framework/Security" />
<field name="SocialLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Social.framework/Social" />
<field name="SpeechLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Speech.framework/" />
@ -618014,7 +618248,7 @@
<field name="UIKitLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UIKit.framework/UIKit" />
<field name="UserNotificationsLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UserNotifications.framework/UserNotifications" />
<field name="UserNotificationsUILibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/UserNotificationsUI.framework/UserNotificationsUI" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.0.0" />
<field name="Version" attrib="32854" fieldtype="System.String" value="12.2.1" />
<field name="VideoSubscriberAccountLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount" />
<field name="VideoToolboxLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox" />
<field name="VisionLibrary" attrib="32854" fieldtype="System.String" value="/System/Library/Frameworks/Vision.framework/Vision" />
@ -619455,6 +619689,18 @@
<parameter name="a" position="0" attrib="0" type="System.Reflection.Assembly" />
</parameters>
</method>
<method name="ReleaseBlockOnMainThread(System.IntPtr)" attrib="8342" static="true" returntype="System.Void">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="block" position="0" attrib="0" type="System.IntPtr" />
</parameters>
</method>
<method name="StartWWAN(System.Uri)" attrib="150" static="true" returntype="System.Void">
<parameters>
<parameter name="uri" position="0" attrib="0" type="System.Uri" />
@ -711184,6 +711430,12 @@
</parameters>
</method>
<method name="Evaluate()" attrib="134" returntype="Security.SecTrustResult">
<attributes>
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
<attribute name="ObjCRuntime.DeprecatedAttribute" />
</attributes>
<parameters />
</method>
<method name="Evaluate(out Foundation.NSError&amp;)" attrib="134" returntype="System.Boolean">
@ -753188,6 +753440,34 @@
</property>
</properties>
</class>
<class name="IUIPencilInteractionDelegate" type="interface" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.ProtocolAttribute">
<properties>
<property name="Name" value="UIPencilInteractionDelegate" />
<property name="WrapperType" value="UIKit.UIPencilInteractionDelegateWrapper" />
</properties>
</attribute>
<attribute name="Foundation.ProtocolMemberAttribute">
<properties>
<property name="IsRequired" value="False" />
<property name="IsProperty" value="False" />
<property name="IsStatic" value="False" />
<property name="Name" value="DidTap" />
<property name="Selector" value="pencilInteractionDidTap:" />
<property name="ParameterType" value="Mono.Cecil.CustomAttributeArgument[]" />
<property name="ParameterByRef" value="Mono.Cecil.CustomAttributeArgument[]" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<interfaces>
<interface name="ObjCRuntime.INativeObject" />
<interface name="System.IDisposable" />
</interfaces>
</class>
<class name="IUIPickerViewAccessibilityDelegate" type="interface" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.ProtocolAttribute">
@ -833830,6 +834110,351 @@
</property>
</properties>
</class>
<class name="UIPencilInteraction" type="class" base="Foundation.NSObject" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.RegisterAttribute">
<properties>
<property name="Name" value="UIPencilInteraction" />
<property name="IsWrapper" value="True" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<interfaces>
<interface name="Foundation.INSObjectProtocol" />
<interface name="ObjCRuntime.INativeObject" />
<interface name="System.IDisposable" />
<interface name="System.IEquatable`1[Foundation.NSObject]" />
<interface name="UIKit.IUIInteraction" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="init" />
</properties>
</attribute>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters />
</constructor>
<constructor name=".ctor(Foundation.NSObjectFlag)" attrib="6276">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="t" position="0" attrib="0" type="Foundation.NSObjectFlag" />
</parameters>
</constructor>
<constructor name=".ctor(System.IntPtr)" attrib="6277">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="handle" position="0" attrib="0" type="System.IntPtr" />
</parameters>
</constructor>
</constructors>
<properties>
<property name="ClassHandle" attrib="0" ptype="System.IntPtr">
<methods>
<method name="get_ClassHandle()" attrib="2246" virtual="true" is-override="true" returntype="System.IntPtr">
<parameters />
</method>
</methods>
</property>
<property name="Delegate" attrib="0" ptype="UIKit.IUIPencilInteractionDelegate">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<methods>
<method name="get_Delegate()" attrib="2182" returntype="UIKit.IUIPencilInteractionDelegate">
<parameters />
</method>
<method name="set_Delegate(UIKit.IUIPencilInteractionDelegate)" attrib="2182" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="UIKit.IUIPencilInteractionDelegate" />
</parameters>
</method>
</methods>
</property>
<property name="Enabled" attrib="0" ptype="System.Boolean">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<methods>
<method name="get_Enabled()" attrib="2502" virtual="true" returntype="System.Boolean">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="isEnabled" />
</properties>
</attribute>
</attributes>
<parameters />
</method>
<method name="set_Enabled(System.Boolean)" attrib="2502" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setEnabled:" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
</method>
</methods>
</property>
<property name="PreferredTapAction" attrib="0" ptype="UIKit.UIPencilPreferredAction">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<methods>
<method name="get_PreferredTapAction()" attrib="2198" static="true" returntype="UIKit.UIPencilPreferredAction">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="preferredTapAction" />
</properties>
</attribute>
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="View" attrib="0" ptype="UIKit.UIView">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<methods>
<method name="get_View()" attrib="2502" virtual="true" returntype="UIKit.UIView">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="view" />
<property name="ArgumentSemantic" value="Weak" />
</properties>
</attribute>
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="WeakDelegate" attrib="0" ptype="Foundation.NSObject">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<methods>
<method name="get_WeakDelegate()" attrib="2502" virtual="true" returntype="Foundation.NSObject">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="delegate" />
<property name="ArgumentSemantic" value="Weak" />
</properties>
</attribute>
</attributes>
<parameters />
</method>
<method name="set_WeakDelegate(Foundation.NSObject)" attrib="2502" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setDelegate:" />
<property name="ArgumentSemantic" value="Weak" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="Foundation.NSObject" />
</parameters>
</method>
</methods>
</property>
</properties>
<methods>
<method name="DidMoveToView(UIKit.UIView)" attrib="454" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="didMoveToView:" />
</properties>
</attribute>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<parameters>
<parameter name="view" position="0" attrib="0" type="UIKit.UIView" />
</parameters>
</method>
<method name="Dispose(System.Boolean)" attrib="196" virtual="true" is-override="true" returntype="System.Void">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<parameters>
<parameter name="disposing" position="0" attrib="0" type="System.Boolean" />
</parameters>
</method>
<method name="WillMoveToView(UIKit.UIView)" attrib="454" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="willMoveToView:" />
</properties>
</attribute>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<parameters>
<parameter name="view" position="0" attrib="0" type="UIKit.UIView" />
</parameters>
</method>
</methods>
</class>
<class name="UIPencilInteractionDelegate" type="class" base="Foundation.NSObject" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.ModelAttribute" />
<attribute name="Foundation.ProtocolAttribute" />
<attribute name="Foundation.RegisterAttribute">
<properties>
<property name="Name" value="UIPencilInteractionDelegate" />
<property name="IsWrapper" value="False" />
</properties>
</attribute>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<interfaces>
<interface name="Foundation.INSObjectProtocol" />
<interface name="ObjCRuntime.INativeObject" />
<interface name="System.IDisposable" />
<interface name="System.IEquatable`1[Foundation.NSObject]" />
<interface name="UIKit.IUIPencilInteractionDelegate" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="init" />
</properties>
</attribute>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters />
</constructor>
<constructor name=".ctor(Foundation.NSObjectFlag)" attrib="6276">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="t" position="0" attrib="0" type="Foundation.NSObjectFlag" />
</parameters>
</constructor>
<constructor name=".ctor(System.IntPtr)" attrib="6277">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Advanced" />
</properties>
</attribute>
</attributes>
<parameters>
<parameter name="handle" position="0" attrib="0" type="System.IntPtr" />
</parameters>
</constructor>
</constructors>
<methods>
<method name="DidTap(UIKit.UIPencilInteraction)" attrib="454" virtual="true" returntype="System.Void">
<attributes>
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="pencilInteractionDidTap:" />
</properties>
</attribute>
<attribute name="ObjCRuntime.BindingImplAttribute" />
</attributes>
<parameters>
<parameter name="interaction" position="0" attrib="0" type="UIKit.UIPencilInteraction" />
</parameters>
</method>
</methods>
</class>
<class name="UIPencilInteractionDelegate_Extensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="DidTap(UIKit.IUIPencilInteractionDelegate, UIKit.UIPencilInteraction)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="This" position="0" attrib="0" type="UIKit.IUIPencilInteractionDelegate" direction="this" />
<parameter name="interaction" position="1" attrib="0" type="UIKit.UIPencilInteraction" />
</parameters>
</method>
</methods>
</class>
<class name="UIPencilPreferredAction" type="enum" base="System.Enum" sealed="true" serializable="true" charset="Ansi" layout="Auto" enumtype="System.Int64">
<attributes>
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.NativeAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<interfaces>
<interface name="System.IComparable" />
<interface name="System.IConvertible" />
<interface name="System.IFormattable" />
</interfaces>
<fields>
<field name="Ignore" attrib="32854" fieldtype="UIKit.UIPencilPreferredAction" value="0" />
<field name="ShowColorPalette" attrib="32854" fieldtype="UIKit.UIPencilPreferredAction" value="3" />
<field name="SwitchEraser" attrib="32854" fieldtype="UIKit.UIPencilPreferredAction" value="1" />
<field name="SwitchPrevious" attrib="32854" fieldtype="UIKit.UIPencilPreferredAction" value="2" />
</fields>
</class>
<class name="UIPercentDrivenInteractiveTransition" type="class" base="Foundation.NSObject" charset="Ansi" layout="Auto">
<attributes>
<attribute name="Foundation.RegisterAttribute">
@ -846329,9 +846954,6 @@
<property name="ContentOffset" attrib="0" ptype="CoreGraphics.CGPoint">
<attributes>
<attribute name="ObjCRuntime.BindingImplAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.IntroducedAttribute" />
<attribute name="ObjCRuntime.UnavailableAttribute" />
</attributes>
<methods>
<method name="get_ContentOffset()" attrib="2502" virtual="true" returntype="CoreGraphics.CGPoint">
@ -846339,7 +846961,6 @@
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="contentOffset" />
<property name="ArgumentSemantic" value="Assign" />
</properties>
</attribute>
</attributes>
@ -846350,7 +846971,6 @@
<attribute name="Foundation.ExportAttribute">
<properties>
<property name="Selector" value="setContentOffset:" />
<property name="ArgumentSemantic" value="Assign" />
</properties>
</attribute>
</attributes>

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -2081,7 +2081,6 @@
</class>
<class name="SqliteException" type="class" base="System.Data.Common.DbException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -2216,9 +2215,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />

Просмотреть файл

@ -2535,7 +2535,6 @@
</class>
<class name="TdsInternalException" type="class" base="System.SystemException" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<properties>
@ -2819,7 +2818,6 @@
</class>
<class name="TdsTimeoutException" type="class" base="Mono.Data.Tds.Protocol.TdsInternalException" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
</class>

Просмотреть файл

@ -4460,7 +4460,6 @@
</class>
<class name="TlsException" type="class" base="System.Exception" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8364,7 +8363,6 @@
</class>
<class name="XMLError" type="class" base="System.Exception" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>

Просмотреть файл

@ -372,9 +372,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -390,7 +387,6 @@
</class>
<class name="ChangeRejectedException" type="class" base="System.ComponentModel.Composition.CompositionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -426,7 +422,6 @@
</class>
<class name="CompositionContractMismatchException" type="class" base="System.Exception" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -532,7 +527,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -596,9 +590,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -728,9 +719,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String, System.Object)" attrib="6278">
<parameters>
@ -806,9 +794,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -939,7 +924,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -978,9 +962,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1101,9 +1082,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1120,9 +1098,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1155,9 +1130,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1174,9 +1146,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -1207,9 +1176,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.ComponentModel.Composition.CreationPolicy)" attrib="6278">
<parameters>
@ -1240,9 +1206,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String, System.Object)" attrib="6278">
<parameters>
@ -1284,9 +1247,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -2832,7 +2792,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>

Просмотреть файл

@ -122,9 +122,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String, System.String, System.String)" attrib="6278">
<parameters>
@ -194,9 +191,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -232,9 +226,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -295,9 +286,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -313,9 +301,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -338,9 +323,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type, System.String)" attrib="6278">
<parameters>
@ -421,9 +403,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.ComponentModel.DataAnnotations.DataType)" attrib="6278">
<parameters>
@ -496,9 +475,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -651,9 +627,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -716,9 +689,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -827,9 +797,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Boolean)" attrib="6278">
<parameters>
@ -877,9 +844,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -902,9 +866,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -941,9 +902,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -985,9 +943,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1072,9 +1027,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1090,9 +1042,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1137,9 +1086,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -1166,9 +1112,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Int32)" attrib="6278">
<parameters>
@ -1210,9 +1153,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1235,9 +1175,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Double, System.Double)" attrib="6278">
<parameters>
@ -1313,9 +1250,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1369,9 +1303,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1414,9 +1345,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Boolean)" attrib="6278">
<parameters>
@ -1446,9 +1374,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Boolean)" attrib="6278">
<parameters>
@ -1478,9 +1403,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Int32)" attrib="6278">
<parameters>
@ -1541,9 +1463,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1559,9 +1478,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1636,9 +1552,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1653,9 +1566,6 @@
</methods>
</class>
<class name="ValidationAttribute" type="class" base="System.Attribute" abstract="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />
@ -1853,7 +1763,6 @@
</class>
<class name="ValidationException" type="class" base="System.Exception" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -2044,9 +1953,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -2100,9 +2006,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -2118,9 +2021,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption)" attrib="6278">
<parameters>
@ -2162,9 +2062,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -2191,9 +2088,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -2220,9 +2114,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -2238,9 +2129,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>

Просмотреть файл

@ -18032,6 +18032,51 @@
<field name="Y" attrib="6" fieldtype="System.Byte[]" />
</fields>
</class>
<class name="IncrementalHash" type="class" base="System.Object" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />
</interfaces>
<properties>
<property name="AlgorithmName" attrib="0" ptype="System.Security.Cryptography.HashAlgorithmName">
<methods>
<method name="get_AlgorithmName()" attrib="2182" returntype="System.Security.Cryptography.HashAlgorithmName">
<parameters />
</method>
</methods>
</property>
</properties>
<methods>
<method name="AppendData(System.Byte[])" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="AppendData(System.Byte[], System.Int32, System.Int32)" attrib="134" returntype="System.Void">
<parameters>
<parameter name="data" position="0" attrib="0" type="System.Byte[]" />
<parameter name="offset" position="1" attrib="0" type="System.Int32" />
<parameter name="count" position="2" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CreateHMAC(System.Security.Cryptography.HashAlgorithmName, System.Byte[])" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
<parameter name="key" position="1" attrib="0" type="System.Byte[]" />
</parameters>
</method>
<method name="CreateHash(System.Security.Cryptography.HashAlgorithmName)" attrib="150" static="true" returntype="System.Security.Cryptography.IncrementalHash">
<parameters>
<parameter name="hashAlgorithm" position="0" attrib="0" type="System.Security.Cryptography.HashAlgorithmName" />
</parameters>
</method>
<method name="Dispose()" attrib="486" virtual="true" returntype="System.Void">
<parameters />
</method>
<method name="GetHashAndReset()" attrib="134" returntype="System.Byte[]">
<parameters />
</method>
</methods>
</class>
<class name="RSACng" type="class" base="System.Security.Cryptography.RSA" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.IDisposable" />

Просмотреть файл

@ -117,7 +117,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -861,7 +860,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -1064,7 +1062,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -1472,9 +1469,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1515,9 +1509,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String, System.String)" attrib="6278">
<parameters>
@ -1725,9 +1716,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1743,9 +1731,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1793,9 +1778,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String, System.Data.Services.Common.SyndicationItemProperty, System.Data.Services.Common.SyndicationTextContentKind, System.Boolean)" attrib="6278">
<parameters>
@ -1876,9 +1858,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -1906,9 +1885,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />

Просмотреть файл

@ -139,7 +139,6 @@
</class>
<class name="InvalidUdtException" type="class" base="System.SystemException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<methods>
@ -654,9 +653,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -735,9 +731,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1298,9 +1291,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1355,9 +1345,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1388,9 +1375,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1477,9 +1461,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<fields>
<field name="MaxByteSizeValue" attrib="32854" fieldtype="System.Int32" value="8000" />
</fields>
@ -1582,9 +1563,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(Microsoft.SqlServer.Server.Format)" attrib="6278">
<parameters>
@ -2056,7 +2034,6 @@
</class>
<class name="ConstraintException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -2084,7 +2061,6 @@
</class>
<class name="DBConcurrencyException" type="class" base="System.SystemException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -2826,7 +2802,6 @@
</class>
<class name="DataException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -4650,9 +4625,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<attributes>
@ -6771,7 +6743,6 @@
</class>
<class name="DeletedRowInaccessibleException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -6799,7 +6770,6 @@
</class>
<class name="DuplicateNameException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -6827,7 +6797,6 @@
</class>
<class name="EvaluateException" type="class" base="System.Data.InvalidExpressionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8008,7 +7977,6 @@
</class>
<class name="InRowChangingEventException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8123,7 +8091,6 @@
</class>
<class name="InvalidConstraintException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8151,7 +8118,6 @@
</class>
<class name="InvalidExpressionException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8310,7 +8276,6 @@
</class>
<class name="MissingPrimaryKeyException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8351,7 +8316,6 @@
</class>
<class name="NoNullAllowedException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8379,7 +8343,6 @@
</class>
<class name="OperationAbortedException" type="class" base="System.SystemException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
</class>
@ -8451,7 +8414,6 @@
</class>
<class name="ReadOnlyException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8479,7 +8441,6 @@
</class>
<class name="RowNotInTableException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8724,7 +8685,6 @@
</class>
<class name="StrongTypingException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8752,7 +8712,6 @@
</class>
<class name="SyntaxErrorException" type="class" base="System.Data.InvalidExpressionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8780,7 +8739,6 @@
</class>
<class name="TypedDataSetGeneratorException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8976,7 +8934,6 @@
</class>
<class name="VersionNotFoundException" type="class" base="System.Data.DataException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -9163,9 +9120,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Security.Permissions.SecurityAction)" attrib="6276">
<parameters>
@ -12586,7 +12540,6 @@
</class>
<class name="DbException" type="class" base="System.Runtime.InteropServices.ExternalException" abstract="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -13242,9 +13195,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Boolean)" attrib="6278">
<parameters>
@ -14316,9 +14266,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Security.Permissions.SecurityAction)" attrib="6278">
<parameters>
@ -16410,7 +16357,6 @@
</class>
<class name="SqlException" type="class" base="System.Data.Common.DbException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<properties>
@ -17507,7 +17453,6 @@
</class>
<class name="SqlAlreadyFilledException" type="class" base="System.Data.SqlTypes.SqlTypeException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -21222,7 +21167,6 @@
</class>
<class name="SqlNotFilledException" type="class" base="System.Data.SqlTypes.SqlTypeException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -21244,7 +21188,6 @@
</class>
<class name="SqlNullValueException" type="class" base="System.Data.SqlTypes.SqlTypeException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -21905,7 +21848,6 @@
</class>
<class name="SqlTruncateException" type="class" base="System.Data.SqlTypes.SqlTypeException" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -21927,7 +21869,6 @@
</class>
<class name="SqlTypeException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>

Просмотреть файл

@ -79,6 +79,7 @@
<property name="CompilationRelaxations" value="8" />
</properties>
</attribute>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
<attribute name="System.Runtime.CompilerServices.RuntimeCompatibilityAttribute">
<properties>
<property name="WrapNonExceptionThrows" value="True" />
@ -621,6 +622,30 @@
</method>
</methods>
</class>
<class name="DataContractSerializerExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer)" attrib="150" static="true" returntype="System.Runtime.Serialization.ISerializationSurrogateProvider">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
</parameters>
</method>
<method name="SetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer, System.Runtime.Serialization.ISerializationSurrogateProvider)" attrib="150" static="true" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="serializer" position="0" attrib="0" type="System.Runtime.Serialization.DataContractSerializer" direction="this" />
<parameter name="provider" position="1" attrib="0" type="System.Runtime.Serialization.ISerializationSurrogateProvider" />
</parameters>
</method>
</methods>
</class>
<class name="DataContractSerializerSettings" type="class" base="System.Object" charset="Ansi" layout="Auto">
<constructors>
<constructor name=".ctor()" attrib="6278">
@ -1041,6 +1066,27 @@
</property>
</properties>
</class>
<class name="ISerializationSurrogateProvider" type="interface" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="GetDeserializedObject(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetObjectToSerialize(System.Object, System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Object">
<parameters>
<parameter name="obj" position="0" attrib="0" type="System.Object" />
<parameter name="targetType" position="1" attrib="0" type="System.Type" />
</parameters>
</method>
<method name="GetSurrogateType(System.Type)" attrib="1478" abstract="true" virtual="true" returntype="System.Type">
<parameters>
<parameter name="type" position="0" attrib="0" type="System.Type" />
</parameters>
</method>
</methods>
</class>
<class name="IgnoreDataMemberAttribute" type="class" base="System.Attribute" sealed="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.AttributeUsageAttribute">

Просмотреть файл

@ -335,7 +335,6 @@
</class>
<class name="UriTemplateMatchException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -1371,7 +1370,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
<interface name="System.ServiceModel.Description.IOperationBehavior" />
</interfaces>
<constructors>
@ -1460,7 +1458,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
<interface name="System.ServiceModel.Description.IOperationBehavior" />
</interfaces>
<constructors>

Просмотреть файл

@ -3364,7 +3364,6 @@
<classes>
<class name="ActionNotSupportedException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -3682,7 +3681,6 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
<interface name="System.ServiceModel.Description.IEndpointBehavior" />
</interfaces>
<constructors>
@ -4472,7 +4470,6 @@
</class>
<class name="CommunicationException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -4500,7 +4497,6 @@
</class>
<class name="CommunicationObjectAbortedException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -4528,7 +4524,6 @@
</class>
<class name="CommunicationObjectFaultedException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -4590,9 +4585,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -5221,7 +5213,6 @@
</class>
<class name="EndpointNotFoundException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -5588,9 +5579,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -5665,7 +5653,6 @@
</class>
<class name="FaultException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -5797,7 +5784,6 @@
</class>
<class name="FaultException`1" type="class" base="System.ServiceModel.FaultException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<generic-parameters>
@ -6723,7 +6709,6 @@
</class>
<class name="InvalidMessageContractException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -6758,9 +6743,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -6789,9 +6771,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -6856,9 +6835,6 @@
</properties>
</class>
<class name="MessageContractMemberAttribute" type="class" base="System.Attribute" abstract="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />
@ -6933,9 +6909,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -6951,9 +6924,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -7000,7 +6970,6 @@
</class>
<class name="MessageHeaderException" type="class" base="System.ServiceModel.ProtocolException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -7186,9 +7155,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -7218,9 +7184,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -8028,9 +7991,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -8234,7 +8194,6 @@
</class>
<class name="ProtocolException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8286,7 +8245,6 @@
</class>
<class name="QuotaExceededException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8434,7 +8392,6 @@
</class>
<class name="ServerTooBusyException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8462,7 +8419,6 @@
</class>
<class name="ServiceActivationException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -8497,9 +8453,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -8597,9 +8550,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -8880,9 +8830,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -16445,7 +16392,6 @@
</class>
<class name="MessageSecurityException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -16604,7 +16550,6 @@
</class>
<class name="SecurityAccessDeniedException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -16632,7 +16577,6 @@
</class>
<class name="SecurityNegotiationException" type="class" base="System.ServiceModel.CommunicationException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>

Просмотреть файл

@ -556,7 +556,6 @@
</class>
<class name="TransactionAbortedException" type="class" base="System.Transactions.TransactionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -635,7 +634,6 @@
</class>
<class name="TransactionException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -663,7 +661,6 @@
</class>
<class name="TransactionInDoubtException" type="class" base="System.Transactions.TransactionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -822,7 +819,6 @@
</class>
<class name="TransactionManagerCommunicationException" type="class" base="System.Transactions.TransactionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -900,7 +896,6 @@
</class>
<class name="TransactionPromotionException" type="class" base="System.Transactions.TransactionException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>

Просмотреть файл

@ -294,9 +294,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -412,9 +409,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<fields>
<field name="DefaultNamespace" attrib="32854" fieldtype="System.String" value="http://tempuri.org/" />
</fields>
@ -472,9 +466,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -588,9 +579,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -685,9 +673,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -732,9 +717,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -1938,8 +1920,8 @@
<attributes>
<attribute name="System.Xml.Serialization.XmlElementAttribute">
<properties>
<property name="Type" value="System.Web.Services.Description.MimeTextMatch" />
<property name="ElementName" value="match" />
<property name="Type" value="System.Web.Services.Description.MimeTextMatch" />
</properties>
</attribute>
</attributes>
@ -2308,14 +2290,14 @@
<attributes>
<attribute name="System.Xml.Serialization.XmlElementAttribute">
<properties>
<property name="Type" value="System.Web.Services.Description.OperationOutput" />
<property name="ElementName" value="output" />
<property name="Type" value="System.Web.Services.Description.OperationOutput" />
</properties>
</attribute>
<attribute name="System.Xml.Serialization.XmlElementAttribute">
<properties>
<property name="Type" value="System.Web.Services.Description.OperationInput" />
<property name="ElementName" value="input" />
<property name="Type" value="System.Web.Services.Description.OperationInput" />
</properties>
</attribute>
</attributes>
@ -4901,8 +4883,8 @@
<attribute name="System.Xml.Serialization.XmlElementAttribute">
<properties>
<property name="Namespace" value="http://www.w3.org/2001/XMLSchema" />
<property name="Type" value="System.Xml.Schema.XmlSchema" />
<property name="ElementName" value="schema" />
<property name="Type" value="System.Xml.Schema.XmlSchema" />
</properties>
</attribute>
</attributes>
@ -5951,8 +5933,8 @@
<attributes>
<attribute name="System.Xml.Serialization.XmlElementAttribute">
<properties>
<property name="Type" value="System.Web.Services.Discovery.ExcludePathInfo" />
<property name="ElementName" value="exclude" />
<property name="Type" value="System.Web.Services.Discovery.ExcludePathInfo" />
</properties>
</attribute>
</attributes>
@ -6232,9 +6214,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -6936,9 +6915,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -7069,9 +7045,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -7129,7 +7102,6 @@
</class>
<class name="SoapException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>
@ -7369,9 +7341,6 @@
</methods>
</class>
<class name="SoapExtensionAttribute" type="class" base="System.Attribute" abstract="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />
@ -7684,9 +7653,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -8149,9 +8115,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -8277,9 +8240,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />

Просмотреть файл

@ -2760,6 +2760,21 @@
</method>
</methods>
</class>
<class name="XDocumentExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="ToXPathNavigable(System.Xml.Linq.XNode)" attrib="150" static="true" returntype="System.Xml.XPath.IXPathNavigable">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="node" position="0" attrib="0" type="System.Xml.Linq.XNode" direction="this" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
</namespaces>

Просмотреть файл

@ -2405,7 +2405,6 @@
</class>
<class name="XmlException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -10095,7 +10094,6 @@
</class>
<class name="XmlSchemaException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -10683,7 +10681,6 @@
</class>
<class name="XmlSchemaInferenceException" type="class" base="System.Xml.Schema.XmlSchemaException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -12396,7 +12393,6 @@
</class>
<class name="XmlSchemaValidationException" type="class" base="System.Xml.Schema.XmlSchemaException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -13054,9 +13050,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13250,9 +13243,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13310,9 +13300,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13346,9 +13333,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13364,9 +13348,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -13514,9 +13495,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13641,9 +13619,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13659,9 +13634,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13795,9 +13767,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -13880,9 +13849,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14069,9 +14035,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14450,9 +14413,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14539,9 +14499,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14802,9 +14759,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14838,9 +14792,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -14856,9 +14807,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.Type)" attrib="6278">
<parameters>
@ -15047,9 +14995,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -15340,9 +15285,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -15574,9 +15516,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor(System.String)" attrib="6278">
<parameters>
@ -17286,9 +17225,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -17507,9 +17443,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -17579,9 +17512,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -17627,9 +17557,6 @@
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Runtime.InteropServices._Attribute" />
</interfaces>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
@ -17780,7 +17707,6 @@
</class>
<class name="XPathException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -19329,7 +19255,6 @@
</class>
<class name="XsltCompileException" type="class" base="System.Xml.Xsl.XsltException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>
@ -19424,7 +19349,6 @@
</class>
<class name="XsltException" type="class" base="System.SystemException" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.Runtime.InteropServices._Exception" />
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<constructors>

Просмотреть файл

@ -244,6 +244,47 @@
</constructor>
</constructors>
</class>
<class name="StringNormalizationExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="IsNormalized(System.String)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="IsNormalized(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
<method name="Normalize(System.String)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
</parameters>
</method>
<method name="Normalize(System.String, System.Text.NormalizationForm)" attrib="150" static="true" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="strInput" position="0" attrib="0" type="System.String" direction="this" />
<parameter name="normalizationForm" position="1" attrib="0" type="System.Text.NormalizationForm" />
</parameters>
</method>
</methods>
</class>
<class name="Uri" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.TypeConverterAttribute">
@ -3064,6 +3105,18 @@
<namespace name="System.Collections.ObjectModel">
<classes>
<class name="ObservableCollection`1" type="class" base="System.Collections.ObjectModel.Collection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3150,6 +3203,18 @@
</methods>
</class>
<class name="ReadOnlyObservableCollection`1" type="class" base="System.Collections.ObjectModel.ReadOnlyCollection`1[T]" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Collections.Generic.CollectionDebugView`1" />
</properties>
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[T]" />
<interface name="System.Collections.Generic.IEnumerable`1[T]" />
@ -3291,6 +3356,9 @@
</methods>
<classes>
<class name="Section" type="struct" base="System.ValueType" sealed="true" charset="Ansi" layout="Sequential">
<attributes>
<attribute name="System.Runtime.CompilerServices.IsReadOnlyAttribute" />
</attributes>
<properties>
<property name="Mask" attrib="0" ptype="System.Int16">
<methods>
@ -3673,6 +3741,20 @@
</parameters>
</method>
</methods>
<classes>
<class name="DictionaryNode" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<fields>
<field name="key" attrib="6" fieldtype="System.Object" />
<field name="next" attrib="6" fieldtype="System.Collections.Specialized.ListDictionary+DictionaryNode" />
<field name="value" attrib="6" fieldtype="System.Object" />
</fields>
<constructors>
<constructor name=".ctor()" attrib="6278">
<parameters />
</constructor>
</constructors>
</class>
</classes>
</class>
<class name="NameObjectCollectionBase" type="class" base="System.Object" abstract="true" serializable="true" charset="Ansi" layout="Auto">
<interfaces>
@ -4357,7 +4439,7 @@
<method name="GetEnumerator()" attrib="454" virtual="true" returntype="System.Collections.IDictionaryEnumerator">
<parameters />
</method>
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="16838" virtual="true" returntype="System.Void">
<method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="454" virtual="true" returntype="System.Void">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -4503,12 +4585,6 @@
</class>
<class name="StringDictionary" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.Design.Serialization.DesignerSerializerAttribute">
<properties>
<property name="SerializerTypeName" value="System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<property name="SerializerBaseTypeName" value="System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -21190,6 +21266,61 @@
</method>
</methods>
</class>
<class name="StackFrameExtensions" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<methods>
<method name="GetNativeIP(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="GetNativeImageBase(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.IntPtr">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasILOffset(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasMethod(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasNativeImage(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
<method name="HasSource(System.Diagnostics.StackFrame)" attrib="150" static="true" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.ExtensionAttribute" />
</attributes>
<parameters>
<parameter name="stackFrame" position="0" attrib="0" type="System.Diagnostics.StackFrame" direction="this" />
</parameters>
</method>
</methods>
</class>
<class name="Stopwatch" type="class" base="System.Object" charset="Ansi" layout="Auto">
<fields>
<field name="Frequency" attrib="54" fieldtype="System.Int64" />
@ -23328,9 +23459,15 @@
<property name="ChangeType" attrib="0" ptype="System.IO.WatcherChangeTypes">
<methods>
<method name="get_ChangeType()" attrib="2182" returntype="System.IO.WatcherChangeTypes">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_ChangeType(System.IO.WatcherChangeTypes)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.IO.WatcherChangeTypes" />
</parameters>
@ -23340,9 +23477,15 @@
<property name="Name" attrib="0" ptype="System.String">
<methods>
<method name="get_Name()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Name(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23352,9 +23495,15 @@
<property name="OldName" attrib="0" ptype="System.String">
<methods>
<method name="get_OldName()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_OldName(System.String)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.String" />
</parameters>
@ -23364,9 +23513,15 @@
<property name="TimedOut" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_TimedOut()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_TimedOut(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -25274,8 +25429,19 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<properties>
<property name="CachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_CachePolicy()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_CachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2246" virtual="true" is-override="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="ClientCertificates" attrib="0" ptype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<attributes />
<methods>
<method name="get_ClientCertificates()" attrib="2182" returntype="System.Security.Cryptography.X509Certificates.X509CertificateCollection">
<parameters />
@ -25288,7 +25454,6 @@
</methods>
</property>
<property name="ConnectionGroupName" attrib="0" ptype="System.String">
<attributes />
<methods>
<method name="get_ConnectionGroupName()" attrib="2246" virtual="true" is-override="true" returntype="System.String">
<parameters />
@ -25348,6 +25513,18 @@
</method>
</methods>
</property>
<property name="DefaultCachePolicy" attrib="0" ptype="System.Net.Cache.RequestCachePolicy">
<methods>
<method name="get_DefaultCachePolicy()" attrib="2198" static="true" returntype="System.Net.Cache.RequestCachePolicy">
<parameters />
</method>
<method name="set_DefaultCachePolicy(System.Net.Cache.RequestCachePolicy)" attrib="2198" static="true" returntype="System.Void">
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Net.Cache.RequestCachePolicy" />
</parameters>
</method>
</methods>
</property>
<property name="EnableSsl" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_EnableSsl()" attrib="2182" returntype="System.Boolean">
@ -25361,7 +25538,6 @@
</methods>
</property>
<property name="Headers" attrib="0" ptype="System.Net.WebHeaderCollection">
<attributes />
<methods>
<method name="get_Headers()" attrib="2246" virtual="true" is-override="true" returntype="System.Net.WebHeaderCollection">
<parameters />
@ -25374,7 +25550,6 @@
</methods>
</property>
<property name="KeepAlive" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_KeepAlive()" attrib="2182" returntype="System.Boolean">
<parameters />
@ -25485,7 +25660,6 @@
</methods>
</property>
<property name="UseDefaultCredentials" attrib="0" ptype="System.Boolean">
<attributes />
<methods>
<method name="get_UseDefaultCredentials()" attrib="2246" virtual="true" is-override="true" returntype="System.Boolean">
<parameters />
@ -41049,6 +41223,34 @@
</class>
</classes>
</namespace>
<namespace name="System.Security">
<classes>
<class name="SecureStringMarshal" type="class" base="System.Object" sealed="true" abstract="true" charset="Ansi" layout="Auto">
<methods>
<method name="SecureStringToCoTaskMemAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToCoTaskMemUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocAnsi(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
<method name="SecureStringToGlobalAllocUnicode(System.Security.SecureString)" attrib="150" static="true" returntype="System.IntPtr">
<parameters>
<parameter name="s" position="0" attrib="0" type="System.Security.SecureString" />
</parameters>
</method>
</methods>
</class>
</classes>
</namespace>
<namespace name="System.Security.AccessControl">
<classes>
<class name="SemaphoreAccessRule" type="class" base="System.Security.AccessControl.AccessRule" sealed="true" charset="Ansi" layout="Auto">
@ -43763,6 +43965,16 @@
</class>
<class name="CaptureCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Capture&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43770,8 +43982,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Capture]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43783,7 +44001,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43797,7 +44015,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Capture" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Capture">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Capture">
<parameters>
<parameter name="i" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43819,6 +44037,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Capture[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Capture[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43858,6 +44082,16 @@
</class>
<class name="GroupCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Group&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43865,8 +44099,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Group]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43878,7 +44118,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -43892,7 +44132,7 @@
</property>
<property name="Item" attrib="0" ptype="System.Text.RegularExpressions.Group" params="System.Int32">
<methods>
<method name="get_Item(System.Int32)" attrib="2182" returntype="System.Text.RegularExpressions.Group">
<method name="get_Item(System.Int32)" attrib="2534" virtual="true" returntype="System.Text.RegularExpressions.Group">
<parameters>
<parameter name="groupnum" position="0" attrib="0" type="System.Int32" />
</parameters>
@ -43923,6 +44163,12 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Group[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Group[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
@ -43963,6 +44209,16 @@
</class>
<class name="MatchCollection" type="class" base="System.Object" serializable="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.Diagnostics.DebuggerDisplayAttribute">
<properties>
<property name="Value" value="Count = {Count}" />
</properties>
</attribute>
<attribute name="System.Diagnostics.DebuggerTypeProxyAttribute">
<properties>
<property name="ProxyTypeName" value="System.Text.RegularExpressions.RegexCollectionDebuggerProxy`1&lt;System.Text.RegularExpressions.Match&gt;" />
</properties>
</attribute>
<attribute name="System.Reflection.DefaultMemberAttribute">
<properties>
<property name="MemberName" value="Item" />
@ -43970,8 +44226,14 @@
</attribute>
</attributes>
<interfaces>
<interface name="System.Collections.Generic.ICollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IEnumerable`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyCollection`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.Generic.IReadOnlyList`1[System.Text.RegularExpressions.Match]" />
<interface name="System.Collections.ICollection" />
<interface name="System.Collections.IEnumerable" />
<interface name="System.Collections.IList" />
</interfaces>
<properties>
<property name="Count" attrib="0" ptype="System.Int32">
@ -43983,7 +44245,7 @@
</property>
<property name="IsReadOnly" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsReadOnly()" attrib="2182" returntype="System.Boolean">
<method name="get_IsReadOnly()" attrib="2534" virtual="true" returntype="System.Boolean">
<parameters />
</method>
</methods>
@ -44019,12 +44281,18 @@
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="CopyTo(System.Text.RegularExpressions.Match[], System.Int32)" attrib="486" virtual="true" returntype="System.Void">
<parameters>
<parameter name="array" position="0" attrib="0" type="System.Text.RegularExpressions.Match[]" />
<parameter name="arrayIndex" position="1" attrib="0" type="System.Int32" />
</parameters>
</method>
<method name="GetEnumerator()" attrib="486" virtual="true" returntype="System.Collections.IEnumerator">
<parameters />
</method>
</methods>
</class>
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" serializable="true" charset="Ansi" layout="Auto">
<class name="MatchEvaluator" type="delegate" base="System.MulticastDelegate" sealed="true" charset="Ansi" layout="Auto">
<interfaces>
<interface name="System.ICloneable" />
<interface name="System.Runtime.Serialization.ISerializable" />
@ -44062,21 +44330,13 @@
<interface name="System.Runtime.Serialization.ISerializable" />
</interfaces>
<fields>
<field name="InfiniteMatchTimeout" attrib="182" fieldtype="System.TimeSpan" />
<field name="InfiniteMatchTimeout" attrib="54" fieldtype="System.TimeSpan" />
<field name="capnames" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="caps" attrib="5" fieldtype="System.Collections.Hashtable" />
<field name="capsize" attrib="5" fieldtype="System.Int32" />
<field name="capslist" attrib="5" fieldtype="System.String[]" />
<field name="factory" attrib="5" fieldtype="System.Text.RegularExpressions.RegexRunnerFactory" />
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.Serialization.OptionalFieldAttribute">
<properties>
<property name="VersionAdded" value="2" />
</properties>
</attribute>
</attributes>
</field>
<field name="internalMatchTimeout" attrib="5" fieldtype="System.TimeSpan" />
<field name="pattern" attrib="5" fieldtype="System.String" />
<field name="roptions" attrib="5" fieldtype="System.Text.RegularExpressions.RegexOptions" />
</fields>
@ -44471,7 +44731,7 @@
<method name="UseOptionC()" attrib="132" returntype="System.Boolean">
<parameters />
</method>
<method name="UseOptionR()" attrib="132" returntype="System.Boolean">
<method name="UseOptionR()" attrib="133" returntype="System.Boolean">
<parameters />
</method>
<method name="ValidateMatchTimeout(System.TimeSpan)" attrib="149" static="true" returntype="System.Void">
@ -44507,9 +44767,15 @@
<property name="IsPublic" attrib="0" ptype="System.Boolean">
<methods>
<method name="get_IsPublic()" attrib="2182" returntype="System.Boolean">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_IsPublic(System.Boolean)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Boolean" />
</parameters>
@ -44555,9 +44821,15 @@
<property name="Options" attrib="0" ptype="System.Text.RegularExpressions.RegexOptions">
<methods>
<method name="get_Options()" attrib="2182" returntype="System.Text.RegularExpressions.RegexOptions">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
<method name="set_Options(System.Text.RegularExpressions.RegexOptions)" attrib="2182" returntype="System.Void">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters>
<parameter name="value" position="0" attrib="0" type="System.Text.RegularExpressions.RegexOptions" />
</parameters>
@ -44591,7 +44863,7 @@
<parameter name="message" position="0" attrib="0" type="System.String" />
</parameters>
</constructor>
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="22660">
<constructor name=".ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" attrib="6276">
<parameters>
<parameter name="info" position="0" attrib="0" type="System.Runtime.Serialization.SerializationInfo" />
<parameter name="context" position="1" attrib="0" type="System.Runtime.Serialization.StreamingContext" />
@ -44614,21 +44886,30 @@
<properties>
<property name="Input" attrib="0" ptype="System.String">
<methods>
<method name="get_Input()" attrib="18566" returntype="System.String">
<method name="get_Input()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="MatchTimeout" attrib="0" ptype="System.TimeSpan">
<methods>
<method name="get_MatchTimeout()" attrib="18566" returntype="System.TimeSpan">
<method name="get_MatchTimeout()" attrib="2182" returntype="System.TimeSpan">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
</property>
<property name="Pattern" attrib="0" ptype="System.String">
<methods>
<method name="get_Pattern()" attrib="18566" returntype="System.String">
<method name="get_Pattern()" attrib="2182" returntype="System.String">
<attributes>
<attribute name="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />
</attributes>
<parameters />
</method>
</methods>
@ -44658,13 +44939,6 @@
</fields>
</class>
<class name="RegexRunner" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<fields>
<field name="runcrawl" attrib="5" fieldtype="System.Int32[]" />
<field name="runcrawlpos" attrib="5" fieldtype="System.Int32" />
@ -44808,13 +45082,6 @@
</methods>
</class>
<class name="RegexRunnerFactory" type="class" base="System.Object" abstract="true" charset="Ansi" layout="Auto">
<attributes>
<attribute name="System.ComponentModel.EditorBrowsableAttribute">
<properties>
<property name="State" value="Never" />
</properties>
</attribute>
</attributes>
<constructors>
<constructor name=".ctor()" attrib="6276">
<parameters />

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу