Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-05-04 03:27:28 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-05-04 03:36:49 +0300
commitd827555dc0c7e529ab768bac537784cb4c68df04 (patch)
treec225dd5ea4863721302b81b85bb0c4516dcb740c
parent2e33157fc0c0a346415bacebc46bee042fbf35d6 (diff)
[v4.7] Update APIs to match .NET 4.7 reference assemblies
-rw-r--r--src/v4.7/System.Core.cs96
-rw-r--r--src/v4.7/System.Data.Entity.cs1423
-rw-r--r--src/v4.7/System.Runtime.Caching.cs3
-rw-r--r--src/v4.7/System.Web.cs148
-rw-r--r--src/v4.7/System.Windows.Forms.cs40
-rw-r--r--src/v4.7/System.Xaml.cs8
-rw-r--r--src/v4.7/System.Xml.cs646
-rw-r--r--src/v4.7/System.cs12
-rw-r--r--src/v4.7/mscorlib.cs238
9 files changed, 494 insertions, 2120 deletions
diff --git a/src/v4.7/System.Core.cs b/src/v4.7/System.Core.cs
index 6c0caf2..709ab41 100644
--- a/src/v4.7/System.Core.cs
+++ b/src/v4.7/System.Core.cs
@@ -3236,9 +3236,11 @@ namespace System.Security.Cryptography
{
public CngAlgorithm(string algorithm) { }
public string Algorithm { get { throw null; } }
+ public static System.Security.Cryptography.CngAlgorithm ECDiffieHellman { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDiffieHellmanP256 { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDiffieHellmanP384 { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDiffieHellmanP521 { get { throw null; } }
+ public static System.Security.Cryptography.CngAlgorithm ECDsa { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDsaP256 { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDsaP384 { get { throw null; } }
public static System.Security.Cryptography.CngAlgorithm ECDsaP521 { get { throw null; } }
@@ -3339,6 +3341,8 @@ namespace System.Security.Cryptography
public sealed partial class CngKeyBlobFormat : System.IEquatable<System.Security.Cryptography.CngKeyBlobFormat>
{
public CngKeyBlobFormat(string format) { }
+ public static System.Security.Cryptography.CngKeyBlobFormat EccFullPrivateBlob { get { throw null; } }
+ public static System.Security.Cryptography.CngKeyBlobFormat EccFullPublicBlob { get { throw null; } }
public static System.Security.Cryptography.CngKeyBlobFormat EccPrivateBlob { get { throw null; } }
public static System.Security.Cryptography.CngKeyBlobFormat EccPublicBlob { get { throw null; } }
public string Format { get { throw null; } }
@@ -3474,6 +3478,57 @@ namespace System.Security.Cryptography
public override void ImportParameters(System.Security.Cryptography.DSAParameters parameters) { }
public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { throw null; }
}
+ public partial struct ECCurve
+ {
+ public byte[] A;
+ public byte[] B;
+ public byte[] Cofactor;
+ public System.Security.Cryptography.ECCurve.ECCurveType CurveType;
+ public System.Security.Cryptography.ECPoint G;
+ public System.Nullable<System.Security.Cryptography.HashAlgorithmName> Hash;
+ public byte[] Order;
+ public byte[] Polynomial;
+ public byte[] Prime;
+ public byte[] Seed;
+ public bool IsCharacteristic2 { get { throw null; } }
+ public bool IsExplicit { get { throw null; } }
+ public bool IsNamed { get { throw null; } }
+ public bool IsPrime { get { throw null; } }
+ public System.Security.Cryptography.Oid Oid { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve CreateFromFriendlyName(string oidFriendlyName) { throw null; }
+ public static System.Security.Cryptography.ECCurve CreateFromOid(System.Security.Cryptography.Oid curveOid) { throw null; }
+ public static System.Security.Cryptography.ECCurve CreateFromValue(string oidValue) { throw null; }
+ public void Validate() { }
+ public enum ECCurveType
+ {
+ Characteristic2 = 4,
+ Implicit = 0,
+ Named = 5,
+ PrimeMontgomery = 3,
+ PrimeShortWeierstrass = 1,
+ PrimeTwistedEdwards = 2,
+ }
+ public static partial class NamedCurves
+ {
+ public static System.Security.Cryptography.ECCurve brainpoolP160r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP160t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP192r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP192t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP224r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP224t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP256r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP256t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP320r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP320t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP384r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP384t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP512r1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve brainpoolP512t1 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve nistP256 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve nistP384 { get { throw null; } }
+ public static System.Security.Cryptography.ECCurve nistP521 { get { throw null; } }
+ }
+ }
[System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, MayLeakOnAbort=true)]
public abstract partial class ECDiffieHellman : System.Security.Cryptography.AsymmetricAlgorithm
{
@@ -3482,6 +3537,8 @@ namespace System.Security.Cryptography
public abstract System.Security.Cryptography.ECDiffieHellmanPublicKey PublicKey { get; }
public override string SignatureAlgorithm { get { throw null; } }
public static new System.Security.Cryptography.ECDiffieHellman Create() { throw null; }
+ public static System.Security.Cryptography.ECDiffieHellman Create(System.Security.Cryptography.ECCurve curve) { throw null; }
+ public static System.Security.Cryptography.ECDiffieHellman Create(System.Security.Cryptography.ECParameters parameters) { throw null; }
public static new System.Security.Cryptography.ECDiffieHellman Create(string algorithm) { throw null; }
public byte[] DeriveKeyFromHash(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
public virtual byte[] DeriveKeyFromHash(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] secretPrepend, byte[] secretAppend) { throw null; }
@@ -3489,12 +3546,17 @@ namespace System.Security.Cryptography
public virtual byte[] DeriveKeyFromHmac(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] hmacKey, byte[] secretPrepend, byte[] secretAppend) { throw null; }
public virtual byte[] DeriveKeyMaterial(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey) { throw null; }
public virtual byte[] DeriveKeyTls(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey, byte[] prfLabel, byte[] prfSeed) { throw null; }
+ public virtual System.Security.Cryptography.ECParameters ExportExplicitParameters(bool includePrivateParameters) { throw null; }
+ public virtual System.Security.Cryptography.ECParameters ExportParameters(bool includePrivateParameters) { throw null; }
+ public virtual void GenerateKey(System.Security.Cryptography.ECCurve curve) { }
+ public virtual void ImportParameters(System.Security.Cryptography.ECParameters parameters) { }
}
public sealed partial class ECDiffieHellmanCng : System.Security.Cryptography.ECDiffieHellman
{
public ECDiffieHellmanCng() { }
public ECDiffieHellmanCng(int keySize) { }
public ECDiffieHellmanCng(System.Security.Cryptography.CngKey key) { }
+ public ECDiffieHellmanCng(System.Security.Cryptography.ECCurve curve) { }
public System.Security.Cryptography.CngAlgorithm HashAlgorithm { get { throw null; } set { } }
public byte[] HmacKey { get { throw null; } set { } }
public System.Security.Cryptography.CngKey Key { get { throw null; } }
@@ -3513,16 +3575,22 @@ namespace System.Security.Cryptography
public Microsoft.Win32.SafeHandles.SafeNCryptSecretHandle DeriveSecretAgreementHandle(System.Security.Cryptography.CngKey otherPartyPublicKey) { throw null; }
public Microsoft.Win32.SafeHandles.SafeNCryptSecretHandle DeriveSecretAgreementHandle(System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey) { throw null; }
protected override void Dispose(bool disposing) { }
+ public override System.Security.Cryptography.ECParameters ExportExplicitParameters(bool includePrivateParameters) { throw null; }
+ public override System.Security.Cryptography.ECParameters ExportParameters(bool includePrivateParameters) { throw null; }
public override void FromXmlString(string xmlString) { }
public void FromXmlString(string xml, System.Security.Cryptography.ECKeyXmlFormat format) { }
+ public override void GenerateKey(System.Security.Cryptography.ECCurve curve) { }
+ public override void ImportParameters(System.Security.Cryptography.ECParameters parameters) { }
public override string ToXmlString(bool includePrivateParameters) { throw null; }
public string ToXmlString(System.Security.Cryptography.ECKeyXmlFormat format) { throw null; }
}
public sealed partial class ECDiffieHellmanCngPublicKey : System.Security.Cryptography.ECDiffieHellmanPublicKey
{
- internal ECDiffieHellmanCngPublicKey() : base (default(byte[])) { }
+ internal ECDiffieHellmanCngPublicKey() { }
public System.Security.Cryptography.CngKeyBlobFormat BlobFormat { get { throw null; } }
protected override void Dispose(bool disposing) { }
+ public override System.Security.Cryptography.ECParameters ExportExplicitParameters() { throw null; }
+ public override System.Security.Cryptography.ECParameters ExportParameters() { throw null; }
public static System.Security.Cryptography.ECDiffieHellmanPublicKey FromByteArray(byte[] publicKeyBlob, System.Security.Cryptography.CngKeyBlobFormat format) { throw null; }
public static System.Security.Cryptography.ECDiffieHellmanCngPublicKey FromXmlString(string xml) { throw null; }
public System.Security.Cryptography.CngKey Import() { throw null; }
@@ -3538,9 +3606,12 @@ namespace System.Security.Cryptography
[System.SerializableAttribute]
public abstract partial class ECDiffieHellmanPublicKey : System.IDisposable
{
+ protected ECDiffieHellmanPublicKey() { }
protected ECDiffieHellmanPublicKey(byte[] keyBlob) { }
public void Dispose() { }
protected virtual void Dispose(bool disposing) { }
+ public virtual System.Security.Cryptography.ECParameters ExportExplicitParameters() { throw null; }
+ public virtual System.Security.Cryptography.ECParameters ExportParameters() { throw null; }
public virtual byte[] ToByteArray() { throw null; }
public virtual string ToXmlString() { throw null; }
}
@@ -3551,9 +3622,15 @@ namespace System.Security.Cryptography
public override string KeyExchangeAlgorithm { get { throw null; } }
public override string SignatureAlgorithm { get { throw null; } }
public static new System.Security.Cryptography.ECDsa Create() { throw null; }
+ public static System.Security.Cryptography.ECDsa Create(System.Security.Cryptography.ECCurve curve) { throw null; }
+ public static System.Security.Cryptography.ECDsa Create(System.Security.Cryptography.ECParameters parameters) { throw null; }
public static new System.Security.Cryptography.ECDsa Create(string algorithm) { throw null; }
+ public virtual System.Security.Cryptography.ECParameters ExportExplicitParameters(bool includePrivateParameters) { throw null; }
+ public virtual System.Security.Cryptography.ECParameters ExportParameters(bool includePrivateParameters) { throw null; }
+ public virtual void GenerateKey(System.Security.Cryptography.ECCurve curve) { }
protected virtual byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
protected virtual byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
+ public virtual void ImportParameters(System.Security.Cryptography.ECParameters parameters) { }
public virtual byte[] SignData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
public virtual byte[] SignData(byte[] data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
public virtual byte[] SignData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
@@ -3570,13 +3647,18 @@ namespace System.Security.Cryptography
public ECDsaCng(int keySize) { }
[System.Security.SecuritySafeCriticalAttribute]
public ECDsaCng(System.Security.Cryptography.CngKey key) { }
+ public ECDsaCng(System.Security.Cryptography.ECCurve curve) { }
public System.Security.Cryptography.CngAlgorithm HashAlgorithm { get { throw null; } set { } }
public System.Security.Cryptography.CngKey Key { get { throw null; } }
protected override void Dispose(bool disposing) { }
+ public override System.Security.Cryptography.ECParameters ExportExplicitParameters(bool includePrivateParameters) { throw null; }
+ public override System.Security.Cryptography.ECParameters ExportParameters(bool includePrivateParameters) { throw null; }
public override void FromXmlString(string xmlString) { }
public void FromXmlString(string xml, System.Security.Cryptography.ECKeyXmlFormat format) { }
+ public override void GenerateKey(System.Security.Cryptography.ECCurve curve) { }
protected override byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
protected override byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; }
+ public override void ImportParameters(System.Security.Cryptography.ECParameters parameters) { }
public byte[] SignData(byte[] data) { throw null; }
public byte[] SignData(byte[] data, int offset, int count) { throw null; }
public byte[] SignData(System.IO.Stream data) { throw null; }
@@ -3592,6 +3674,18 @@ namespace System.Security.Cryptography
{
Rfc4050 = 0,
}
+ public partial struct ECParameters
+ {
+ public System.Security.Cryptography.ECCurve Curve;
+ public byte[] D;
+ public System.Security.Cryptography.ECPoint Q;
+ public void Validate() { }
+ }
+ public partial struct ECPoint
+ {
+ public byte[] X;
+ public byte[] Y;
+ }
public sealed partial class ManifestSignatureInformation
{
internal ManifestSignatureInformation() { }
diff --git a/src/v4.7/System.Data.Entity.cs b/src/v4.7/System.Data.Entity.cs
index 7e8ae73..2ca70ae 100644
--- a/src/v4.7/System.Data.Entity.cs
+++ b/src/v4.7/System.Data.Entity.cs
@@ -1287,1429 +1287,6 @@ namespace System.Data.Common.EntitySql
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.EntitySql.FunctionDefinition> FunctionDefinitions { get { throw null; } }
}
}
-namespace System.Data.Entity
-{
- public static partial class Strings
- {
- public static string ADP_ClosedDataReaderError { get { throw null; } }
- public static string ADP_GetSchemaTableIsNotSupported { get { throw null; } }
- public static string ADP_ImplicitlyClosedDataReaderError { get { throw null; } }
- public static string ADP_InvalidDataDirectory { get { throw null; } }
- public static string ADP_InvalidDataReaderFieldCountForScalarType { get { throw null; } }
- public static string ADP_InvalidDataReaderUnableToDetermineType { get { throw null; } }
- public static string ADP_InvalidMultipartNameDelimiterUsage { get { throw null; } }
- public static string ADP_KeysRequiredForNesting { get { throw null; } }
- public static string ADP_MustUseSequentialAccess { get { throw null; } }
- public static string ADP_NoData { get { throw null; } }
- public static string ADP_ProviderDoesNotSupportCommandTrees { get { throw null; } }
- public static string AllElementsMustBeInSchema { get { throw null; } }
- public static string AmbiguousFunctionArguments { get { throw null; } }
- public static string ArgumentMustBeCSpaceType { get { throw null; } }
- public static string ArgumentMustBeOSpaceType { get { throw null; } }
- public static string ArrayTooSmall { get { throw null; } }
- public static string AtleastOneSSDLNeeded { get { throw null; } }
- public static string BadNavigationPropertyRolesCannotBeTheSame { get { throw null; } }
- public static string BetweenLimitsCannotBeUntypedNulls { get { throw null; } }
- public static string CalculatedEnumValueOutOfRange { get { throw null; } }
- public static string CannotCreateEmptyMultiset { get { throw null; } }
- public static string CannotCreateMultisetofNulls { get { throw null; } }
- public static string CannotLoadDifferentVersionOfSchemaInTheSameItemCollection { get { throw null; } }
- public static string CodeGen_PropertyDeclaringTypeIsValueType { get { throw null; } }
- public static string CodeGen_PropertyIsIndexed { get { throw null; } }
- public static string CodeGen_PropertyIsStatic { get { throw null; } }
- public static string CodeGen_PropertyNoGetter { get { throw null; } }
- public static string CodeGen_PropertyNoSetter { get { throw null; } }
- public static string CodeGen_PropertyStrongNameIdentity { get { throw null; } }
- public static string CodeGen_PropertyUnsupportedForm { get { throw null; } }
- public static string CodeGen_PropertyUnsupportedType { get { throw null; } }
- public static string Collections_InvalidEntityStateSource { get { throw null; } }
- public static string Collections_UnableToMergeCollections { get { throw null; } }
- public static string CommandTextFunctionsCannotDeclareStoreFunctionName { get { throw null; } }
- public static string CommandTextFunctionsNotComposable { get { throw null; } }
- public static string ComplexObject_ComplexObjectAlreadyAttachedToParent { get { throw null; } }
- public static string ComposableFunctionOrFunctionImportMustDeclareReturnType { get { throw null; } }
- public static string ConcatBuiltinNotSupported { get { throw null; } }
- public static string Cqt_Aggregate_InvalidFunction { get { throw null; } }
- public static string Cqt_And_BooleanArgumentsRequired { get { throw null; } }
- public static string Cqt_Apply_DuplicateVariableNames { get { throw null; } }
- public static string Cqt_Arithmetic_NumericCommonType { get { throw null; } }
- public static string Cqt_Binding_CollectionRequired { get { throw null; } }
- public static string Cqt_Binding_VariableNameNotValid { get { throw null; } }
- public static string Cqt_Case_InvalidResultType { get { throw null; } }
- public static string Cqt_Case_WhensMustEqualThens { get { throw null; } }
- public static string Cqt_CommandTree_InvalidDataSpace { get { throw null; } }
- public static string Cqt_Comparison_ComparableRequired { get { throw null; } }
- public static string Cqt_Constant_InvalidType { get { throw null; } }
- public static string Cqt_CrossJoin_AtLeastTwoInputs { get { throw null; } }
- public static string Cqt_DeRef_RefRequired { get { throw null; } }
- public static string Cqt_Distinct_InvalidCollection { get { throw null; } }
- public static string Cqt_Element_InvalidArgumentForUnwrapSingleProperty { get { throw null; } }
- public static string Cqt_Exceptions_InvalidCommandTree { get { throw null; } }
- public static string Cqt_ExpressionList_IncorrectElementCount { get { throw null; } }
- public static string Cqt_Factory_IncompatibleRelationEnds { get { throw null; } }
- public static string Cqt_Factory_NewCollectionInvalidCommonType { get { throw null; } }
- public static string Cqt_Factory_NoSuchRelationEnd { get { throw null; } }
- public static string Cqt_Function_CommandTextInExpression { get { throw null; } }
- public static string Cqt_Function_NonComposableInExpression { get { throw null; } }
- public static string Cqt_Function_VoidResultInvalid { get { throw null; } }
- public static string Cqt_General_MetadataNotReadOnly { get { throw null; } }
- public static string Cqt_General_NoProviderBooleanType { get { throw null; } }
- public static string Cqt_General_NoProviderIntegerType { get { throw null; } }
- public static string Cqt_General_NoProviderStringType { get { throw null; } }
- public static string Cqt_GetEntityRef_EntityRequired { get { throw null; } }
- public static string Cqt_GetRefKey_RefRequired { get { throw null; } }
- public static string Cqt_GroupBinding_CollectionRequired { get { throw null; } }
- public static string Cqt_GroupBinding_GroupVariableNameNotValid { get { throw null; } }
- public static string Cqt_GroupBy_AtLeastOneKeyOrAggregate { get { throw null; } }
- public static string Cqt_GroupBy_MoreThanOneGroupAggregate { get { throw null; } }
- public static string Cqt_IsNull_CollectionNotAllowed { get { throw null; } }
- public static string Cqt_IsNull_InvalidType { get { throw null; } }
- public static string Cqt_Join_DuplicateVariableNames { get { throw null; } }
- public static string Cqt_Limit_ConstantOrParameterRefRequired { get { throw null; } }
- public static string Cqt_Limit_IntegerRequired { get { throw null; } }
- public static string Cqt_Limit_NonNegativeLimitRequired { get { throw null; } }
- public static string Cqt_Metadata_EdmMemberIncorrectSpace { get { throw null; } }
- public static string Cqt_Metadata_EntitySetEntityContainerNull { get { throw null; } }
- public static string Cqt_Metadata_EntitySetIncorrectSpace { get { throw null; } }
- public static string Cqt_Metadata_EntityTypeEmptyKeyMembersInvalid { get { throw null; } }
- public static string Cqt_Metadata_EntityTypeNullKeyMembersInvalid { get { throw null; } }
- public static string Cqt_Metadata_FunctionIncorrectSpace { get { throw null; } }
- public static string Cqt_Metadata_FunctionParameterIncorrectSpace { get { throw null; } }
- public static string Cqt_Metadata_FunctionReturnParameterNull { get { throw null; } }
- public static string Cqt_Metadata_TypeUsageIncorrectSpace { get { throw null; } }
- public static string Cqt_NewInstance_CollectionTypeRequired { get { throw null; } }
- public static string Cqt_NewInstance_IncompatibleRelatedEntity_SourceTypeNotValid { get { throw null; } }
- public static string Cqt_NewInstance_StructuralTypeRequired { get { throw null; } }
- public static string Cqt_Not_BooleanArgumentRequired { get { throw null; } }
- public static string Cqt_Or_BooleanArgumentsRequired { get { throw null; } }
- public static string Cqt_Property_InstanceRequiredForInstance { get { throw null; } }
- public static string Cqt_Ref_PolymorphicArgRequired { get { throw null; } }
- public static string Cqt_RelatedEntityRef_TargetEndFromDifferentRelationship { get { throw null; } }
- public static string Cqt_RelatedEntityRef_TargetEndMustBeAtMostOne { get { throw null; } }
- public static string Cqt_RelatedEntityRef_TargetEndSameAsSourceEnd { get { throw null; } }
- public static string Cqt_RelatedEntityRef_TargetEntityNotCompatible { get { throw null; } }
- public static string Cqt_RelatedEntityRef_TargetEntityNotRef { get { throw null; } }
- public static string Cqt_RelNav_NoCompositions { get { throw null; } }
- public static string Cqt_Skip_ConstantOrParameterRefRequired { get { throw null; } }
- public static string Cqt_Skip_IntegerRequired { get { throw null; } }
- public static string Cqt_Skip_NonNegativeCountRequired { get { throw null; } }
- public static string Cqt_Sort_EmptyCollationInvalid { get { throw null; } }
- public static string Cqt_Sort_NonStringCollationInvalid { get { throw null; } }
- public static string Cqt_Sort_OrderComparable { get { throw null; } }
- public static string Cqt_Util_CheckListEmptyInvalid { get { throw null; } }
- public static string CtxAlias { get { throw null; } }
- public static string CtxAliasedNamespaceImport { get { throw null; } }
- public static string CtxAnd { get { throw null; } }
- public static string CtxAnyElement { get { throw null; } }
- public static string CtxApplyClause { get { throw null; } }
- public static string CtxBetween { get { throw null; } }
- public static string CtxCase { get { throw null; } }
- public static string CtxCaseElse { get { throw null; } }
- public static string CtxCaseWhenThen { get { throw null; } }
- public static string CtxCast { get { throw null; } }
- public static string CtxCollatedOrderByClauseItem { get { throw null; } }
- public static string CtxCollectionTypeDefinition { get { throw null; } }
- public static string CtxCommandExpression { get { throw null; } }
- public static string CtxCreateRef { get { throw null; } }
- public static string CtxDeref { get { throw null; } }
- public static string CtxDivide { get { throw null; } }
- public static string CtxElement { get { throw null; } }
- public static string CtxEquals { get { throw null; } }
- public static string CtxEscapedIdentifier { get { throw null; } }
- public static string CtxExcept { get { throw null; } }
- public static string CtxExists { get { throw null; } }
- public static string CtxExpressionList { get { throw null; } }
- public static string CtxFlatten { get { throw null; } }
- public static string CtxFromApplyClause { get { throw null; } }
- public static string CtxFromClause { get { throw null; } }
- public static string CtxFromClauseItem { get { throw null; } }
- public static string CtxFromClauseList { get { throw null; } }
- public static string CtxFromJoinClause { get { throw null; } }
- public static string CtxFunctionDefinition { get { throw null; } }
- public static string CtxGreaterThan { get { throw null; } }
- public static string CtxGreaterThanEqual { get { throw null; } }
- public static string CtxGroupByClause { get { throw null; } }
- public static string CtxGroupPartition { get { throw null; } }
- public static string CtxHavingClause { get { throw null; } }
- public static string CtxIdentifier { get { throw null; } }
- public static string CtxIn { get { throw null; } }
- public static string CtxIntersect { get { throw null; } }
- public static string CtxIsNotNull { get { throw null; } }
- public static string CtxIsNotOf { get { throw null; } }
- public static string CtxIsNull { get { throw null; } }
- public static string CtxIsOf { get { throw null; } }
- public static string CtxJoinClause { get { throw null; } }
- public static string CtxJoinOnClause { get { throw null; } }
- public static string CtxKey { get { throw null; } }
- public static string CtxLessThan { get { throw null; } }
- public static string CtxLessThanEqual { get { throw null; } }
- public static string CtxLike { get { throw null; } }
- public static string CtxLimitSubClause { get { throw null; } }
- public static string CtxLiteral { get { throw null; } }
- public static string CtxMemberAccess { get { throw null; } }
- public static string CtxMethod { get { throw null; } }
- public static string CtxMinus { get { throw null; } }
- public static string CtxModulus { get { throw null; } }
- public static string CtxMultiply { get { throw null; } }
- public static string CtxMultisetCtor { get { throw null; } }
- public static string CtxNamespaceImport { get { throw null; } }
- public static string CtxNamespaceImportList { get { throw null; } }
- public static string CtxNavigate { get { throw null; } }
- public static string CtxNot { get { throw null; } }
- public static string CtxNotBetween { get { throw null; } }
- public static string CtxNotEqual { get { throw null; } }
- public static string CtxNotIn { get { throw null; } }
- public static string CtxNotLike { get { throw null; } }
- public static string CtxNullLiteral { get { throw null; } }
- public static string CtxOfType { get { throw null; } }
- public static string CtxOfTypeOnly { get { throw null; } }
- public static string CtxOr { get { throw null; } }
- public static string CtxOrderByClause { get { throw null; } }
- public static string CtxOrderByClauseItem { get { throw null; } }
- public static string CtxOverlaps { get { throw null; } }
- public static string CtxParen { get { throw null; } }
- public static string CtxPlus { get { throw null; } }
- public static string CtxQueryExpression { get { throw null; } }
- public static string CtxQueryStatement { get { throw null; } }
- public static string CtxRef { get { throw null; } }
- public static string CtxRefTypeDefinition { get { throw null; } }
- public static string CtxRelationship { get { throw null; } }
- public static string CtxRelationshipList { get { throw null; } }
- public static string CtxRowCtor { get { throw null; } }
- public static string CtxRowTypeDefinition { get { throw null; } }
- public static string CtxSelectRowClause { get { throw null; } }
- public static string CtxSelectValueClause { get { throw null; } }
- public static string CtxSet { get { throw null; } }
- public static string CtxSimpleIdentifier { get { throw null; } }
- public static string CtxSkipSubClause { get { throw null; } }
- public static string CtxTopSubClause { get { throw null; } }
- public static string CtxTreat { get { throw null; } }
- public static string CtxTypeName { get { throw null; } }
- public static string CtxTypeNameWithTypeSpec { get { throw null; } }
- public static string CtxUnaryMinus { get { throw null; } }
- public static string CtxUnaryPlus { get { throw null; } }
- public static string CtxUnion { get { throw null; } }
- public static string CtxUnionAll { get { throw null; } }
- public static string CtxWhereClause { get { throw null; } }
- public static string DefaultNotAllowed { get { throw null; } }
- public static string DuplicateEnumMember { get { throw null; } }
- public static string EdmMembersDefiningTypeDoNotAgreeWithMetadataType { get { throw null; } }
- public static string ElementOperatorIsNotSupported { get { throw null; } }
- public static string ELinq_AnonymousType { get { throw null; } }
- public static string ELinq_ClosureType { get { throw null; } }
- public static string ELinq_CreateOrderedEnumerableNotSupported { get { throw null; } }
- public static string ELinq_CycleDetected { get { throw null; } }
- public static string ELinq_EdmFunctionDirectCall { get { throw null; } }
- public static string ELinq_ExpressionMustBeIQueryable { get { throw null; } }
- public static string ELinq_MethodNotDirectlyCallable { get { throw null; } }
- public static string ELinq_PropertyIndexNotSupported { get { throw null; } }
- public static string ELinq_SkipWithoutOrder { get { throw null; } }
- public static string ELinq_ThenByDoesNotFollowOrderBy { get { throw null; } }
- public static string ELinq_UnsupportedBinding { get { throw null; } }
- public static string ELinq_UnsupportedCastToDecimal { get { throw null; } }
- public static string ELinq_UnsupportedConstructor { get { throw null; } }
- public static string ELinq_UnsupportedDifferentContexts { get { throw null; } }
- public static string ELinq_UnsupportedInclude { get { throw null; } }
- public static string ELinq_UnsupportedInitializers { get { throw null; } }
- public static string ELinq_UnsupportedMergeAs { get { throw null; } }
- public static string ELinq_UnsupportedNestedFirst { get { throw null; } }
- public static string ELinq_UnsupportedNestedSingle { get { throw null; } }
- public static string ELinq_UnsupportedQueryableMethod { get { throw null; } }
- public static string EmptyCommandText { get { throw null; } }
- public static string EmptyDefiningQuery { get { throw null; } }
- public static string EmptySchemaTextReader { get { throw null; } }
- public static string EntityClient_CannotCloneStoreProvider { get { throw null; } }
- public static string EntityClient_CannotDeduceDbType { get { throw null; } }
- public static string EntityClient_CannotGetCommandText { get { throw null; } }
- public static string EntityClient_CannotGetCommandTree { get { throw null; } }
- public static string EntityClient_CannotReopenConnection { get { throw null; } }
- public static string EntityClient_CannotReprepareCommandDefinitionBasedCommand { get { throw null; } }
- public static string EntityClient_CannotSetCommandText { get { throw null; } }
- public static string EntityClient_CannotSetCommandTree { get { throw null; } }
- public static string EntityClient_ClosedConnectionForUpdate { get { throw null; } }
- public static string EntityClient_CommandDefinitionExecutionFailed { get { throw null; } }
- public static string EntityClient_CommandDefinitionPreparationFailed { get { throw null; } }
- public static string EntityClient_CommandExecutionFailed { get { throw null; } }
- public static string EntityClient_CommandTreeMetadataIncompatible { get { throw null; } }
- public static string EntityClient_ConnectionMustBeClosed { get { throw null; } }
- public static string EntityClient_ConnectionNotOpen { get { throw null; } }
- public static string EntityClient_ConnectionStateBroken { get { throw null; } }
- public static string EntityClient_ConnectionStateClosed { get { throw null; } }
- public static string EntityClient_ConnectionStringNeededBeforeOperation { get { throw null; } }
- public static string EntityClient_DataReaderIsStillOpen { get { throw null; } }
- public static string EntityClient_EmptyParameterName { get { throw null; } }
- public static string EntityClient_ErrorInBeginningTransaction { get { throw null; } }
- public static string EntityClient_ErrorInClosingConnection { get { throw null; } }
- public static string EntityClient_ExtraParametersWithNamedConnection { get { throw null; } }
- public static string EntityClient_FunctionImportEmptyCommandText { get { throw null; } }
- public static string EntityClient_InvalidNamedConnection { get { throw null; } }
- public static string EntityClient_InvalidStoredProcedureCommandText { get { throw null; } }
- public static string EntityClient_InvalidStoreProvider { get { throw null; } }
- public static string EntityClient_InvalidTransactionForCommand { get { throw null; } }
- public static string EntityClient_NoCommandText { get { throw null; } }
- public static string EntityClient_NoConnectionForAdapter { get { throw null; } }
- public static string EntityClient_NoConnectionForCommand { get { throw null; } }
- public static string EntityClient_NoStoreConnectionForUpdate { get { throw null; } }
- public static string EntityClient_ProviderGeneralError { get { throw null; } }
- public static string EntityClient_RequiresNonStoreCommandTree { get { throw null; } }
- public static string EntityClient_SettingsCannotBeChangedOnOpenConnection { get { throw null; } }
- public static string EntityClient_StoreReaderFailed { get { throw null; } }
- public static string EntityClient_TooFewColumns { get { throw null; } }
- public static string EntityClient_TransactionAlreadyStarted { get { throw null; } }
- public static string EntityClient_UnsupportedCommandType { get { throw null; } }
- public static string EntityClient_ValueNotString { get { throw null; } }
- public static string EntityKey_CannotChangeKey { get { throw null; } }
- public static string EntityKey_DataRecordMustBeEntity { get { throw null; } }
- public static string EntityKey_EntityKeyMustHaveValues { get { throw null; } }
- public static string EntityKey_InvalidQualifiedEntitySetName { get { throw null; } }
- public static string EntityKey_MissingEntitySetName { get { throw null; } }
- public static string EntityKey_NoNullsAllowedInKeyValuePairs { get { throw null; } }
- public static string EntityKey_UnexpectedNull { get { throw null; } }
- public static string EntityParameterCollectionRemoveInvalidObject { get { throw null; } }
- public static string EntityParameterContainedByAnotherCollection { get { throw null; } }
- public static string EntityParameterNull { get { throw null; } }
- public static string EntityProxyTypeInfo_ProxyHasWrongWrapper { get { throw null; } }
- public static string EntityReference_CannotChangeReferentialConstraintProperty { get { throw null; } }
- public static string EntityReference_CannotSetSpecialKeys { get { throw null; } }
- public static string EntityReference_EntityKeyValueMismatch { get { throw null; } }
- public static string EntityReference_LessThanExpectedRelatedEntitiesFound { get { throw null; } }
- public static string EntityReference_MoreThanExpectedRelatedEntitiesFound { get { throw null; } }
- public static string EntitySetInAnotherContainer { get { throw null; } }
- public static string EntityTypesDoNotAgree { get { throw null; } }
- public static string Entity_EntityCantHaveMultipleChangeTrackers { get { throw null; } }
- public static string ExpressionCannotBeNull { get { throw null; } }
- public static string ExpressionMustBeCollection { get { throw null; } }
- public static string ExpressionMustBeNumericType { get { throw null; } }
- public static string ExpressionTypeMustBeBoolean { get { throw null; } }
- public static string ExpressionTypeMustBeEqualComparable { get { throw null; } }
- public static string ExpressionTypeMustNotBeCollection { get { throw null; } }
- public static string ExprIsNotValidEntitySetForCreateRef { get { throw null; } }
- public static string ExtraInfo { get { throw null; } }
- public static string FacetDeclarationRequiresTypeAttribute { get { throw null; } }
- public static string FailedToRetrieveProviderManifest { get { throw null; } }
- public static string GeneralQueryError { get { throw null; } }
- public static string Generated_Views_Changed { get { throw null; } }
- public static string GeneratorErrorSeverityError { get { throw null; } }
- public static string GeneratorErrorSeverityUnknown { get { throw null; } }
- public static string GeneratorErrorSeverityWarning { get { throw null; } }
- public static string GenericSyntaxError { get { throw null; } }
- public static string GroupingKeysMustBeEqualComparable { get { throw null; } }
- public static string GroupPartitionOutOfContext { get { throw null; } }
- public static string GroupVarNotFoundInScope { get { throw null; } }
- public static string HavingRequiresGroupClause { get { throw null; } }
- public static string ImcompatibleCreateRefKeyElementType { get { throw null; } }
- public static string ImcompatibleCreateRefKeyType { get { throw null; } }
- public static string IncorrectProviderManifest { get { throw null; } }
- public static string InFromClause { get { throw null; } }
- public static string InGroupClause { get { throw null; } }
- public static string InnerJoinMustHaveOnPredicate { get { throw null; } }
- public static string InRowCtor { get { throw null; } }
- public static string InSelectProjectionList { get { throw null; } }
- public static string InvalidArgumentTypeForAggregateFunction { get { throw null; } }
- public static string InvalidCaseResultTypes { get { throw null; } }
- public static string InvalidCaseWhenThenNullType { get { throw null; } }
- public static string InvalidCastExpressionType { get { throw null; } }
- public static string InvalidCastType { get { throw null; } }
- public static string InvalidCreateRefKeyType { get { throw null; } }
- public static string InvalidDistinctArgumentInCtor { get { throw null; } }
- public static string InvalidDistinctArgumentInNonAggFunction { get { throw null; } }
- public static string InvalidDocumentationBothTextAndStructure { get { throw null; } }
- public static string InvalidEmptyIdentifier { get { throw null; } }
- public static string InvalidEmptyQuery { get { throw null; } }
- public static string InvalidEmptyQueryTextArgument { get { throw null; } }
- public static string InvalidEnumUnderlyingType { get { throw null; } }
- public static string InvalidFlattenArgument { get { throw null; } }
- public static string InvalidJoinLeftCorrelation { get { throw null; } }
- public static string InvalidMaxLengthSize { get { throw null; } }
- public static string InvalidMetadataMemberName { get { throw null; } }
- public static string InvalidMetadataPath { get { throw null; } }
- public static string InvalidModeForWithRelationshipClause { get { throw null; } }
- public static string InvalidNamespaceAlias { get { throw null; } }
- public static string InvalidNullArithmetic { get { throw null; } }
- public static string InvalidNullComparison { get { throw null; } }
- public static string InvalidOperationMultipleEndsInAssociation { get { throw null; } }
- public static string InvalidOperatorSymbol { get { throw null; } }
- public static string InvalidPredicateForCrossJoin { get { throw null; } }
- public static string InvalidPunctuatorSymbol { get { throw null; } }
- public static string InvalidSavePoint { get { throw null; } }
- public static string InvalidScopeIndex { get { throw null; } }
- public static string InvalidSelectValueAliasedExpression { get { throw null; } }
- public static string InvalidSelectValueList { get { throw null; } }
- public static string InvalidTypeForWithRelationshipClause { get { throw null; } }
- public static string Iqt_CTGen_UnexpectedAggregate { get { throw null; } }
- public static string Iqt_CTGen_UnexpectedVarDef { get { throw null; } }
- public static string Iqt_CTGen_UnexpectedVarDefList { get { throw null; } }
- public static string IsNullInvalidType { get { throw null; } }
- public static string LeftSetExpressionArgsMustBeCollection { get { throw null; } }
- public static string LikeArgMustBeStringType { get { throw null; } }
- public static string LocalizedCollection { get { throw null; } }
- public static string LocalizedColumn { get { throw null; } }
- public static string LocalizedComplex { get { throw null; } }
- public static string LocalizedEntity { get { throw null; } }
- public static string LocalizedEntityContainerExpression { get { throw null; } }
- public static string LocalizedEnumMember { get { throw null; } }
- public static string LocalizedFunction { get { throw null; } }
- public static string LocalizedInlineFunction { get { throw null; } }
- public static string LocalizedKeyword { get { throw null; } }
- public static string LocalizedLeft { get { throw null; } }
- public static string LocalizedLine { get { throw null; } }
- public static string LocalizedMetadataMemberExpression { get { throw null; } }
- public static string LocalizedNamespace { get { throw null; } }
- public static string LocalizedNear { get { throw null; } }
- public static string LocalizedPrimitive { get { throw null; } }
- public static string LocalizedReference { get { throw null; } }
- public static string LocalizedRight { get { throw null; } }
- public static string LocalizedRow { get { throw null; } }
- public static string LocalizedTerm { get { throw null; } }
- public static string LocalizedType { get { throw null; } }
- public static string LocalizedValueExpression { get { throw null; } }
- public static string MalformedSingleQuotePayload { get { throw null; } }
- public static string MalformedStringLiteralPayload { get { throw null; } }
- public static string Mapping_ConditionValueTypeMismatch { get { throw null; } }
- public static string Mapping_DifferentEdmStoreVersion { get { throw null; } }
- public static string Mapping_DifferentMappingEdmStoreVersion { get { throw null; } }
- public static string Mapping_DistinctFlagInReadWriteContainer { get { throw null; } }
- public static string Mapping_General_Error { get { throw null; } }
- public static string Mapping_InvalidContent_Association_Type_Empty { get { throw null; } }
- public static string Mapping_InvalidContent_ConditionMapping_Both_Members { get { throw null; } }
- public static string Mapping_InvalidContent_ConditionMapping_Both_Values { get { throw null; } }
- public static string Mapping_InvalidContent_ConditionMapping_Either_Members { get { throw null; } }
- public static string Mapping_InvalidContent_ConditionMapping_Either_Values { get { throw null; } }
- public static string Mapping_InvalidContent_ConditionMapping_NonScalar { get { throw null; } }
- public static string Mapping_InvalidContent_Container_SubElement { get { throw null; } }
- public static string Mapping_InvalidContent_General { get { throw null; } }
- public static string Mapping_InvalidContent_IsTypeOfNotTerminated { get { throw null; } }
- public static string Mapping_InvalidContent_Table_Expected { get { throw null; } }
- public static string Mapping_InvalidContent_TypeMapping_QueryView { get { throw null; } }
- public static string Mapping_ModificationFunction_In_Table_Context { get { throw null; } }
- public static string Mapping_ModificationFunction_MissingVersion { get { throw null; } }
- public static string Mapping_ModificationFunction_Multiple_Types { get { throw null; } }
- public static string Mapping_ModificationFunction_VersionMustBeCurrent { get { throw null; } }
- public static string Mapping_ModificationFunction_VersionMustBeOriginal { get { throw null; } }
- public static string Mapping_TypeName_For_First_QueryView { get { throw null; } }
- public static string Materializer_CannotReEnumerateQueryResults { get { throw null; } }
- public static string Materializer_PropertyIsNotNullable { get { throw null; } }
- public static string Materializer_UnsupportedType { get { throw null; } }
- public static string Metadata_General_Error { get { throw null; } }
- public static string MethodInvocationNotSupported { get { throw null; } }
- public static string MismatchNumberOfPropertiesinRelationshipConstraint { get { throw null; } }
- public static string MissingName { get { throw null; } }
- public static string MissingNamespaceAttribute { get { throw null; } }
- public static string MultisetElemsAreNotTypeCompatible { get { throw null; } }
- public static string NonComposableFunctionHasDisallowedAttribute { get { throw null; } }
- public static string NonComposableFunctionMustNotDeclareReturnType { get { throw null; } }
- public static string NotBinaryTypeForTypeUsage { get { throw null; } }
- public static string NotDateTimeOffsetTypeForTypeUsage { get { throw null; } }
- public static string NotDateTimeTypeForTypeUsage { get { throw null; } }
- public static string NotDecimalTypeForTypeUsage { get { throw null; } }
- public static string NotStringTypeForTypeUsage { get { throw null; } }
- public static string NotTimeTypeForTypeUsage { get { throw null; } }
- public static string NotValidInputPath { get { throw null; } }
- public static string NullLiteralCannotBePromotedToCollectionOfNulls { get { throw null; } }
- public static string ObjectContext_CannotAttachEntityWithoutKey { get { throw null; } }
- public static string ObjectContext_CannotAttachEntityWithTemporaryKey { get { throw null; } }
- public static string ObjectContext_CannotDeleteEntityNotInObjectStateManager { get { throw null; } }
- public static string ObjectContext_CannotDetachEntityNotInObjectStateManager { get { throw null; } }
- public static string ObjectContext_CannotSetDefaultContainerName { get { throw null; } }
- public static string ObjectContext_CommitWithConceptualNull { get { throw null; } }
- public static string ObjectContext_ContainerQualifiedEntitySetNameRequired { get { throw null; } }
- public static string ObjectContext_EntityAlreadyExistsInObjectStateManager { get { throw null; } }
- public static string ObjectContext_EntityNotTrackedOrHasTempKey { get { throw null; } }
- public static string ObjectContext_EntitySetNameOrEntityKeyRequired { get { throw null; } }
- public static string ObjectContext_ExecuteCommandWithMixOfDbParameterAndValues { get { throw null; } }
- public static string ObjectContext_InvalidCommandTimeout { get { throw null; } }
- public static string ObjectContext_InvalidConnection { get { throw null; } }
- public static string ObjectContext_InvalidConnectionString { get { throw null; } }
- public static string ObjectContext_InvalidDataAdapter { get { throw null; } }
- public static string ObjectContext_InvalidEntityState { get { throw null; } }
- public static string ObjectContext_InvalidRelationshipState { get { throw null; } }
- public static string ObjectContext_MetadataHasChanged { get { throw null; } }
- public static string ObjectContext_ObjectDisposed { get { throw null; } }
- public static string ObjectContext_ObjectNotFound { get { throw null; } }
- public static string ObjectContext_QualfiedEntitySetName { get { throw null; } }
- public static string ObjectContext_RequiredMetadataNotAvailble { get { throw null; } }
- public static string ObjectContext_SelectorExpressionMustBeMemberAccess { get { throw null; } }
- public static string ObjectContext_StoreEntityNotPresentInClient { get { throw null; } }
- public static string ObjectParameterCollection_ParametersLocked { get { throw null; } }
- public static string ObjectQuery_InvalidConnection { get { throw null; } }
- public static string ObjectQuery_InvalidEmptyQuery { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidFilterPredicate { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidGroupKeyList { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidProjectionList { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidQueryArgument { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidSkipCount { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidSortKeyList { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_InvalidTopCount { get { throw null; } }
- public static string ObjectQuery_QueryBuilder_NotSupportedLinqSource { get { throw null; } }
- public static string ObjectQuery_Span_IncludeRequiresEntityOrEntityCollection { get { throw null; } }
- public static string ObjectQuery_Span_SpanPathSyntaxError { get { throw null; } }
- public static string ObjectQuery_Span_WhiteSpacePath { get { throw null; } }
- public static string ObjectQuery_UnableToMapResultType { get { throw null; } }
- public static string ObjectStateEntry_CannotAccessKeyEntryValues { get { throw null; } }
- public static string ObjectStateEntry_CannotDeleteOnKeyEntry { get { throw null; } }
- public static string ObjectStateEntry_CannotModifyKeyEntryState { get { throw null; } }
- public static string ObjectStateEntry_CantModifyDetachedDeletedEntries { get { throw null; } }
- public static string ObjectStateEntry_CantModifyRelationState { get { throw null; } }
- public static string ObjectStateEntry_CantModifyRelationValues { get { throw null; } }
- public static string ObjectStateEntry_CantSetEntityKey { get { throw null; } }
- public static string ObjectStateEntry_CurrentValuesDoesNotExist { get { throw null; } }
- public static string ObjectStateEntry_EntityMemberChangedWithoutEntityMemberChanging { get { throw null; } }
- public static string ObjectStateEntry_InvalidState { get { throw null; } }
- public static string ObjectStateEntry_InvalidTypeForComplexTypeProperty { get { throw null; } }
- public static string ObjectStateEntry_OriginalValuesDoesNotExist { get { throw null; } }
- public static string ObjectStateEntry_RelationshipAndKeyEntriesDoNotHaveRelationshipManagers { get { throw null; } }
- public static string ObjectStateManager_AcceptChangesEntityKeyIsNotValid { get { throw null; } }
- public static string ObjectStateManager_CannotChangeRelationshipStateEntityAdded { get { throw null; } }
- public static string ObjectStateManager_CannotChangeRelationshipStateEntityDeleted { get { throw null; } }
- public static string ObjectStateManager_CannotChangeRelationshipStateKeyEntry { get { throw null; } }
- public static string ObjectStateManager_CannotFixUpKeyToExistingValues { get { throw null; } }
- public static string ObjectStateManager_CannotGetRelationshipManagerForDetachedPocoEntity { get { throw null; } }
- public static string ObjectStateManager_ChangeRelationshipStateNotSupportedForForeignKeyAssociations { get { throw null; } }
- public static string ObjectStateManager_ChangeStateFromAddedWithNullKeyIsInvalid { get { throw null; } }
- public static string ObjectStateManager_DetachedObjectStateEntriesDoesNotExistInObjectStateManager { get { throw null; } }
- public static string ObjectStateManager_EntityConflictsWithKeyEntry { get { throw null; } }
- public static string ObjectStateManager_EntityNotTracked { get { throw null; } }
- public static string ObjectStateManager_InvalidKey { get { throw null; } }
- public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKey { get { throw null; } }
- public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKeyForAttach { get { throw null; } }
- public static string ObjectStateManager_NoEntryExistForEntityKey { get { throw null; } }
- public static string ObjectStateManager_ObjectStateManagerContainsThisEntityKey { get { throw null; } }
- public static string ObjectView_AddNewOperationNotAllowedOnAbstractBindingList { get { throw null; } }
- public static string ObjectView_CannotReplacetheEntityorRow { get { throw null; } }
- public static string ObjectView_IncompatibleArgument { get { throw null; } }
- public static string ObjectView_IndexBasedInsertIsNotSupported { get { throw null; } }
- public static string ObjectView_WriteOperationNotAllowedOnReadOnlyBindingList { get { throw null; } }
- public static string OnlyStoreConnectionsSupported { get { throw null; } }
- public static string OperationOnReadOnlyCollection { get { throw null; } }
- public static string OperationOnReadOnlyItem { get { throw null; } }
- public static string OrderByKeyIsNotOrderComparable { get { throw null; } }
- public static string PlusLeftExpressionInvalidType { get { throw null; } }
- public static string PlusRightExpressionInvalidType { get { throw null; } }
- public static string ProviderDidNotCreateACommandDefinition { get { throw null; } }
- public static string ProviderDidNotReturnAProviderManifest { get { throw null; } }
- public static string ProviderDidNotReturnAProviderManifestToken { get { throw null; } }
- public static string ProviderDidNotReturnSpatialServices { get { throw null; } }
- public static string ProviderDoesNotSupportCreateDatabase { get { throw null; } }
- public static string ProviderDoesNotSupportCreateDatabaseScript { get { throw null; } }
- public static string ProviderDoesNotSupportDatabaseExists { get { throw null; } }
- public static string ProviderDoesNotSupportDeleteDatabase { get { throw null; } }
- public static string ProviderEscapeLikeArgumentReturnedNull { get { throw null; } }
- public static string ProviderManifestTokenNotFound { get { throw null; } }
- public static string ProviderRequiresStoreCommandTree { get { throw null; } }
- public static string ProviderReturnedNullForCreateCommandDefinition { get { throw null; } }
- public static string ProviderShouldOverrideEscapeLikeArgument { get { throw null; } }
- public static string RelatedEndExprTypeMustBeReference { get { throw null; } }
- public static string RelatedEnd_CannotCreateRelationshipEntitiesInDifferentContexts { get { throw null; } }
- public static string RelatedEnd_ConflictingChangeOfRelationshipDetected { get { throw null; } }
- public static string RelatedEnd_InvalidEntityContextForAttach { get { throw null; } }
- public static string RelatedEnd_InvalidEntityStateForAttach { get { throw null; } }
- public static string RelatedEnd_InvalidOwnerStateForAttach { get { throw null; } }
- public static string RelatedEnd_LoadCalledOnAlreadyLoadedNoTrackedRelatedEnd { get { throw null; } }
- public static string RelatedEnd_LoadCalledOnNonEmptyNoTrackedRelatedEnd { get { throw null; } }
- public static string RelatedEnd_OwnerIsNull { get { throw null; } }
- public static string RelatedEnd_RelatedEndNotFound { get { throw null; } }
- public static string RelatedEnd_UnableToAddEntity { get { throw null; } }
- public static string RelatedEnd_UnableToAddRelationshipWithDeletedEntity { get { throw null; } }
- public static string RelatedEnd_UnableToRemoveEntity { get { throw null; } }
- public static string RelationshipFromEndIsAmbiguos { get { throw null; } }
- public static string RelationshipManager_CannotGetRelatEndForDetachedPocoEntity { get { throw null; } }
- public static string RelationshipManager_CircularRelationshipsWithReferentialConstraints { get { throw null; } }
- public static string RelationshipManager_CollectionInitializeIsForDeserialization { get { throw null; } }
- public static string RelationshipManager_InconsistentReferentialConstraintProperties { get { throw null; } }
- public static string RelationshipManager_InitializeIsForDeserialization { get { throw null; } }
- public static string RelationshipManager_InvalidRelationshipManagerOwner { get { throw null; } }
- public static string RelationshipManager_UnableToRetrieveReferentialConstraintProperties { get { throw null; } }
- public static string RelationshipManager_UnexpectedNull { get { throw null; } }
- public static string RelationshipManager_UnexpectedNullContext { get { throw null; } }
- public static string RelationshipToEndIsAmbiguos { get { throw null; } }
- public static string ResultingExpressionTypeCannotBeNull { get { throw null; } }
- public static string RightSetExpressionArgsMustBeCollection { get { throw null; } }
- public static string RowCtorElementCannotBeNull { get { throw null; } }
- public static string RowTypeWithoutProperty { get { throw null; } }
- public static string SelectDistinctMustBeEqualComparable { get { throw null; } }
- public static string SourceUriUnknown { get { throw null; } }
- public static string SpatialWithUseStrongSpatialTypesFalse { get { throw null; } }
- public static string Spatial_GeographyValueNotCompatibleWithSpatialServices { get { throw null; } }
- public static string Spatial_GeometryValueNotCompatibleWithSpatialServices { get { throw null; } }
- public static string Spatial_ProviderValueNotCompatibleWithSpatialServices { get { throw null; } }
- public static string Spatial_WellKnownGeographyValueNotValid { get { throw null; } }
- public static string Spatial_WellKnownGeometryValueNotValid { get { throw null; } }
- public static string Spatial_WellKnownValueSerializationPropertyNotDirectlySettable { get { throw null; } }
- public static string SqlGen_ApplyNotSupportedOnSql8 { get { throw null; } }
- public static string SqlGen_NiladicFunctionsCannotHaveParameters { get { throw null; } }
- public static string SqlGen_ParameterForLimitNotSupportedOnSql8 { get { throw null; } }
- public static string SqlGen_ParameterForSkipNotSupportedOnSql8 { get { throw null; } }
- public static string SqlProvider_CredentialsMissingForMasterConnection { get { throw null; } }
- public static string SqlProvider_DdlGeneration_CannotDeleteDatabaseNoInitialCatalog { get { throw null; } }
- public static string SqlProvider_DdlGeneration_CannotTellIfDatabaseExists { get { throw null; } }
- public static string SqlProvider_DdlGeneration_MissingInitialCatalog { get { throw null; } }
- public static string SqlProvider_GeographyValueNotSqlCompatible { get { throw null; } }
- public static string SqlProvider_GeometryValueNotSqlCompatible { get { throw null; } }
- public static string SqlProvider_IncompleteCreateDatabase { get { throw null; } }
- public static string SqlProvider_IncompleteCreateDatabaseAggregate { get { throw null; } }
- public static string SqlProvider_Sql2008RequiredForSpatial { get { throw null; } }
- public static string SqlProvider_SqlTypesAssemblyNotFound { get { throw null; } }
- public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoSrid { get { throw null; } }
- public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoWkbOrWkt { get { throw null; } }
- public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoSrid { get { throw null; } }
- public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoWkbOrWkt { get { throw null; } }
- public static string StackOverflowInParser { get { throw null; } }
- public static string TopAndLimitCannotCoexist { get { throw null; } }
- public static string TopAndSkipCannotCoexist { get { throw null; } }
- public static string TVFReturnTypeRowHasNonScalarProperty { get { throw null; } }
- public static string TypeArgumentIsNotValid { get { throw null; } }
- public static string TypeArgumentMustBeLiteral { get { throw null; } }
- public static string TypeDeclaredAsAttributeAndElement { get { throw null; } }
- public static string TypeMustBeDeclared { get { throw null; } }
- public static string TypeMustBeInheritableType { get { throw null; } }
- public static string UnableToDetermineApplicationContext { get { throw null; } }
- public static string UnableToDetermineStoreVersion { get { throw null; } }
- public static string UnableToLoadResource { get { throw null; } }
- public static string UnknownAstCommandExpression { get { throw null; } }
- public static string UnknownAstExpressionType { get { throw null; } }
- public static string UnknownBuiltInAstExpressionType { get { throw null; } }
- public static string Update_AmbiguousServerGenIdentifier { get { throw null; } }
- public static string Update_CircularRelationships { get { throw null; } }
- public static string Update_ConstraintCycle { get { throw null; } }
- public static string Update_DuplicateKeys { get { throw null; } }
- public static string Update_ErrorLoadingRecord { get { throw null; } }
- public static string Update_GeneralExecutionException { get { throw null; } }
- public static string Update_InvalidChanges { get { throw null; } }
- public static string Update_ReferentialConstraintIntegrityViolation { get { throw null; } }
- public static string Update_WorkspaceMismatch { get { throw null; } }
- public static string Validator_BaseTypeHasMemberOfSameName { get { throw null; } }
- public static string Validator_CollectionHasNoTypeUsage { get { throw null; } }
- public static string Validator_CollectionTypesCannotHaveBaseType { get { throw null; } }
- public static string Validator_EmptyIdentity { get { throw null; } }
- public static string Validator_FacetHasNoName { get { throw null; } }
- public static string Validator_FacetTypeIsNull { get { throw null; } }
- public static string Validator_ItemAttributeHasNullTypeUsage { get { throw null; } }
- public static string Validator_MemberHasNoName { get { throw null; } }
- public static string Validator_MemberHasNullDeclaringType { get { throw null; } }
- public static string Validator_MemberHasNullTypeUsage { get { throw null; } }
- public static string Validator_MetadataPropertyHasNoName { get { throw null; } }
- public static string Validator_OSpace_Convention_NonMatchingUnderlyingTypes { get { throw null; } }
- public static string Validator_RefTypeHasNullEntityType { get { throw null; } }
- public static string Validator_RefTypesCannotHaveBaseType { get { throw null; } }
- public static string Validator_TypeHasNoName { get { throw null; } }
- public static string Validator_TypeHasNoNamespace { get { throw null; } }
- public static string Validator_TypeUsageHasNullEdmType { get { throw null; } }
- public static string ViewGen_AND { get { throw null; } }
- public static string ViewGen_CommaBlank { get { throw null; } }
- public static string ViewGen_Entities { get { throw null; } }
- public static string ViewGen_EntityInstanceToken { get { throw null; } }
- public static string ViewGen_Error { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Disj_Eq { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Disj_Subs { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Disj_Subs_Ref { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Disj_Unk { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Eq_Disj { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Eq_Subs { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Eq_Subs_Ref { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Eq_Unk { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Eq_Unk_Association { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Sub_Disj { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Sub_Eq { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Sub_Eq_Ref { get { throw null; } }
- public static string Viewgen_ErrorPattern_Partition_Sub_Unk { get { throw null; } }
- public static string ViewGen_Extent { get { throw null; } }
- public static string Viewgen_NoJoinKeyOrFK { get { throw null; } }
- public static string ViewGen_NotNull { get { throw null; } }
- public static string ViewGen_Null { get { throw null; } }
- public static string ViewGen_Tuples { get { throw null; } }
- public static string WildcardEnumeratorReturnedNull { get { throw null; } }
- public static string ADP_CollectionParameterElementIsNull(object p0) { throw null; }
- public static string ADP_CollectionParameterElementIsNullOrEmpty(object p0) { throw null; }
- public static string ADP_ConnectionStringSyntax(object p0) { throw null; }
- public static string ADP_DataReaderClosed(object p0) { throw null; }
- public static string ADP_InternalProviderError(object p0) { throw null; }
- public static string ADP_InvalidBufferSizeOrIndex(object p0, object p1) { throw null; }
- public static string ADP_InvalidConnectionOptionValue(object p0) { throw null; }
- public static string ADP_InvalidDataLength(object p0) { throw null; }
- public static string ADP_InvalidDataReaderMissingColumnForType(object p0, object p1) { throw null; }
- public static string ADP_InvalidDataReaderMissingDiscriminatorColumn(object p0, object p1) { throw null; }
- public static string ADP_InvalidDataReaderUnableToMaterializeNonScalarType(object p0, object p1) { throw null; }
- public static string ADP_InvalidDataType(object p0) { throw null; }
- public static string ADP_InvalidDestinationBufferIndex(object p0, object p1) { throw null; }
- public static string ADP_InvalidEnumerationValue(object p0, object p1) { throw null; }
- public static string ADP_InvalidSizeValue(object p0) { throw null; }
- public static string ADP_InvalidSourceBufferIndex(object p0, object p1) { throw null; }
- public static string ADP_KeysRequiredForJoinOverNest(object p0) { throw null; }
- public static string ADP_KeywordNotSupported(object p0) { throw null; }
- public static string ADP_NestingNotSupported(object p0, object p1) { throw null; }
- public static string ADP_NonSequentialChunkAccess(object p0, object p1, object p2) { throw null; }
- public static string ADP_NonSequentialColumnAccess(object p0, object p1) { throw null; }
- public static string ADP_NoQueryMappingView(object p0, object p1) { throw null; }
- public static string ADP_UnknownDataTypeCode(object p0, object p1) { throw null; }
- public static string AliasNameAlreadyUsed(object p0) { throw null; }
- public static string AliasNameIsAlreadyDefined(object p0) { throw null; }
- public static string AllArtifactsMustTargetSameProvider_InvariantName(object p0, object p1) { throw null; }
- public static string AllArtifactsMustTargetSameProvider_ManifestToken(object p0, object p1) { throw null; }
- public static string AmbiguousEntityContainerEnd(object p0, object p1) { throw null; }
- public static string AmbiguousFunctionAndType(object p0, object p1) { throw null; }
- public static string AmbiguousFunctionOverload(object p0, object p1) { throw null; }
- public static string AmbiguousMetadataMemberName(object p0, object p1, object p2) { throw null; }
- public static string ArgumentOutOfRange(object p0) { throw null; }
- public static string ArgumentOutOfRangeExpectedPostiveNumber(object p0) { throw null; }
- public static string ArgumentTypesAreIncompatible(object p0, object p1) { throw null; }
- public static string AssemblyMissingFromAssembliesToConsider(object p0) { throw null; }
- public static string BadNamespaceOrAlias(object p0) { throw null; }
- public static string BadNavigationPropertyBadFromRoleType(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string BadNavigationPropertyRelationshipNotRelationship(object p0) { throw null; }
- public static string BadNavigationPropertyUndefinedRole(object p0, object p1) { throw null; }
- public static string BadParameterDirection(object p0, object p1, object p2, object p3) { throw null; }
- public static string BadParameterDirectionForComposableFunctions(object p0, object p1, object p2, object p3) { throw null; }
- public static string BadPrecisionAndScale(object p0, object p1) { throw null; }
- public static string BetweenLimitsTypesAreNotCompatible(object p0, object p1) { throw null; }
- public static string BetweenLimitsTypesAreNotOrderComparable(object p0, object p1) { throw null; }
- public static string BetweenValueIsNotOrderComparable(object p0, object p1) { throw null; }
- public static string BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet(object p0, object p1) { throw null; }
- public static string CannotCallNoncomposableFunction(object p0) { throw null; }
- public static string CannotConvertNumericLiteral(object p0, object p1) { throw null; }
- public static string CannotInstantiateAbstractType(object p0) { throw null; }
- public static string CannotResolveNameToTypeOrFunction(object p0) { throw null; }
- public static string CannotUseSystemNamespaceAsAlias(object p0) { throw null; }
- public static string CheckArgumentContainsNullFailed(object p0) { throw null; }
- public static string CodeGen_ConstructorNoParameterless(object p0) { throw null; }
- public static string Collections_CannotFillTryDifferentMergeOption(object p0, object p1) { throw null; }
- public static string Collections_ExpectedCollectionGotReference(object p0, object p1, object p2) { throw null; }
- public static string Collections_InvalidEntityStateLoad(object p0) { throw null; }
- public static string Collections_NoRelationshipSetMatched(object p0) { throw null; }
- public static string CompiledELinq_UnsupportedNamedParameterType(object p0, object p1) { throw null; }
- public static string CompiledELinq_UnsupportedNamedParameterUseAsType(object p0, object p1) { throw null; }
- public static string CompiledELinq_UnsupportedParameterTypes(object p0) { throw null; }
- public static string ComplexObject_ComplexChangeRequestedOnScalarProperty(object p0) { throw null; }
- public static string ComplexObject_NullableComplexTypesNotSupported(object p0) { throw null; }
- public static string ComplexTypeAsReturnTypeAndDefinedEntitySet(object p0, object p1) { throw null; }
- public static string ComplexTypeAsReturnTypeAndNestedComplexProperty(object p0, object p1, object p2) { throw null; }
- public static string ConcurrencyRedefinedOnSubTypeOfEntitySetType(object p0, object p1, object p2) { throw null; }
- public static string ConstantFacetSpecifiedInSchema(object p0, object p1) { throw null; }
- public static string CouldNotResolveIdentifier(object p0) { throw null; }
- public static string Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus(object p0) { throw null; }
- public static string Cqt_Binary_CollectionsRequired(object p0) { throw null; }
- public static string Cqt_Cast_InvalidCast(object p0, object p1) { throw null; }
- public static string Cqt_CommandTree_InvalidParameterName(object p0) { throw null; }
- public static string Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType(object p0, object p1, object p2) { throw null; }
- public static string Cqt_Constant_InvalidConstantType(object p0) { throw null; }
- public static string Cqt_Constant_InvalidValueForType(object p0) { throw null; }
- public static string Cqt_Copier_EndNotFound(object p0, object p1) { throw null; }
- public static string Cqt_Copier_EntityContainerNotFound(object p0) { throw null; }
- public static string Cqt_Copier_EntitySetNotFound(object p0, object p1) { throw null; }
- public static string Cqt_Copier_FunctionNotFound(object p0) { throw null; }
- public static string Cqt_Copier_NavPropertyNotFound(object p0, object p1) { throw null; }
- public static string Cqt_Copier_PropertyNotFound(object p0, object p1) { throw null; }
- public static string Cqt_Copier_TypeNotFound(object p0) { throw null; }
- public static string Cqt_CrossJoin_DuplicateVariableNames(object p0, object p1, object p2) { throw null; }
- public static string Cqt_ExpressionLink_TypeMismatch(object p0, object p1) { throw null; }
- public static string Cqt_Factory_MethodResultTypeNotSupported(object p0) { throw null; }
- public static string Cqt_Factory_NoSuchProperty(object p0, object p1) { throw null; }
- public static string Cqt_Function_CanonicalFunction_AmbiguousMatch(object p0) { throw null; }
- public static string Cqt_Function_CanonicalFunction_NotFound(object p0) { throw null; }
- public static string Cqt_General_PolymorphicArgRequired(object p0) { throw null; }
- public static string Cqt_General_PolymorphicTypeRequired(object p0) { throw null; }
- public static string Cqt_General_UnsupportedExpression(object p0) { throw null; }
- public static string Cqt_GroupBy_AggregateColumnExistsAsGroupColumn(object p0) { throw null; }
- public static string Cqt_GroupBy_KeyNotEqualityComparable(object p0) { throw null; }
- public static string Cqt_InvalidTypeForSetOperation(object p0, object p1) { throw null; }
- public static string Cqt_NewInstance_CannotInstantiateAbstractType(object p0) { throw null; }
- public static string Cqt_NewInstance_CannotInstantiateMemberlessType(object p0) { throw null; }
- public static string Cqt_RelNav_WrongSourceType(object p0) { throw null; }
- public static string Cqt_UDF_FunctionDefinitionGenerationFailed(object p0) { throw null; }
- public static string Cqt_UDF_FunctionDefinitionResultTypeMismatch(object p0, object p1, object p2) { throw null; }
- public static string Cqt_UDF_FunctionDefinitionWithCircularReference(object p0) { throw null; }
- public static string Cqt_UDF_FunctionHasNoDefinition(object p0) { throw null; }
- public static string Cqt_Unary_CollectionRequired(object p0) { throw null; }
- public static string Cqt_Util_CheckListDuplicateName(object p0, object p1, object p2) { throw null; }
- public static string Cqt_Validator_InvalidIncompatibleParameterReferences(object p0) { throw null; }
- public static string Cqt_Validator_InvalidIncorrectDataSpaceMetadata(object p0, object p1) { throw null; }
- public static string Cqt_Validator_InvalidOtherWorkspaceMetadata(object p0) { throw null; }
- public static string Cqt_Validator_VarRefInvalid(object p0) { throw null; }
- public static string Cqt_Validator_VarRefTypeMismatch(object p0) { throw null; }
- public static string CreateRefTypeIdentifierMustBeASubOrSuperType(object p0, object p1) { throw null; }
- public static string CreateRefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
- public static string CtxFunction(object p0) { throw null; }
- public static string CtxTypeCtor(object p0) { throw null; }
- public static string CycleInTypeHierarchy(object p0) { throw null; }
- public static string DeRefArgIsNotOfRefType(object p0) { throw null; }
- public static string DifferentSchemaVersionInCollection(object p0, object p1, object p2) { throw null; }
- public static string DuplicateAnnotation(object p0, object p1) { throw null; }
- public static string DuplicatedFunctionoverloads(object p0, object p1) { throw null; }
- public static string DuplicatedInlineFunctionOverload(object p0) { throw null; }
- public static string DuplicateEndName(object p0) { throw null; }
- public static string DuplicateEntityContainerMemberName(object p0) { throw null; }
- public static string DuplicateEntitySetTable(object p0, object p1, object p2) { throw null; }
- public static string DuplicateMemberName(object p0, object p1, object p2) { throw null; }
- public static string DuplicateMemberNameInExtendedEntityContainer(object p0, object p1, object p2) { throw null; }
- public static string DuplicatePropertyNameSpecifiedInEntityKey(object p0, object p1) { throw null; }
- public static string DuplicationOperation(object p0) { throw null; }
- public static string EdmVersionNotSupportedByRuntime(object p0, object p1) { throw null; }
- public static string ELinq_EdmFunctionAttributedFunctionWithWrongReturnType(object p0, object p1) { throw null; }
- public static string ELinq_EdmFunctionAttributeParameterNameNotValid(object p0, object p1, object p2) { throw null; }
- public static string ELinq_InvalidOfTypeResult(object p0) { throw null; }
- public static string ELinq_NotPropertyOrField(object p0) { throw null; }
- public static string ELinq_UnboundParameterExpression(object p0) { throw null; }
- public static string ELinq_UnexpectedTypeForNavigationProperty(object p0, object p1, object p2, object p3) { throw null; }
- public static string ELinq_UnhandledBindingType(object p0) { throw null; }
- public static string ELinq_UnhandledExpressionType(object p0) { throw null; }
- public static string ELinq_UnrecognizedMember(object p0) { throw null; }
- public static string ELinq_UnresolvableFunctionForExpression(object p0) { throw null; }
- public static string ELinq_UnresolvableFunctionForMember(object p0, object p1) { throw null; }
- public static string ELinq_UnresolvableFunctionForMethod(object p0, object p1) { throw null; }
- public static string ELinq_UnresolvableFunctionForMethodAmbiguousMatch(object p0, object p1) { throw null; }
- public static string ELinq_UnresolvableFunctionForMethodNotFound(object p0, object p1) { throw null; }
- public static string ELinq_UnresolvableStoreFunctionForExpression(object p0) { throw null; }
- public static string ELinq_UnresolvableStoreFunctionForMember(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedAsUnicodeAndAsNonUnicode(object p0) { throw null; }
- public static string ELinq_UnsupportedCast(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedComparison(object p0) { throw null; }
- public static string ELinq_UnsupportedConstant(object p0) { throw null; }
- public static string ELinq_UnsupportedEnumerableType(object p0) { throw null; }
- public static string ELinq_UnsupportedExpressionType(object p0) { throw null; }
- public static string ELinq_UnsupportedHeterogeneousInitializers(object p0) { throw null; }
- public static string ELinq_UnsupportedIsOrAs(object p0, object p1, object p2) { throw null; }
- public static string ELinq_UnsupportedKeySelector(object p0) { throw null; }
- public static string ELinq_UnsupportedMethod(object p0) { throw null; }
- public static string ELinq_UnsupportedMethodSuggestedAlternative(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedNominalType(object p0) { throw null; }
- public static string ELinq_UnsupportedNullConstant(object p0) { throw null; }
- public static string ELinq_UnsupportedPassthrough(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedRefComparison(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedRowComparison(object p0) { throw null; }
- public static string ELinq_UnsupportedRowMemberComparison(object p0) { throw null; }
- public static string ELinq_UnsupportedRowTypeComparison(object p0) { throw null; }
- public static string ELinq_UnsupportedStringRemoveCase(object p0, object p1) { throw null; }
- public static string ELinq_UnsupportedTrimStartTrimEndCase(object p0) { throw null; }
- public static string ELinq_UnsupportedType(object p0) { throw null; }
- public static string ELinq_UnsupportedUseOfContextParameter(object p0) { throw null; }
- public static string ELinq_UnsupportedVBDatePartInvalidInterval(object p0, object p1, object p2) { throw null; }
- public static string ELinq_UnsupportedVBDatePartNonConstantInterval(object p0, object p1) { throw null; }
- public static string EmptyFile(object p0) { throw null; }
- public static string EmptyName(object p0) { throw null; }
- public static string EndNameAlreadyDefinedDuplicate(object p0) { throw null; }
- public static string EndWithManyMultiplicityCannotHaveOperationsSpecified(object p0, object p1) { throw null; }
- public static string EndWithoutMultiplicity(object p0, object p1) { throw null; }
- public static string EntityClient_ConnectionStringMissingInfo(object p0) { throw null; }
- public static string EntityClient_DbConnectionHasNoProvider(object p0) { throw null; }
- public static string EntityClient_DoesNotImplementIServiceProvider(object p0) { throw null; }
- public static string EntityClient_DuplicateParameterNames(object p0) { throw null; }
- public static string EntityClient_EntityParameterEdmTypeNotScalar(object p0) { throw null; }
- public static string EntityClient_EntityParameterInconsistentEdmType(object p0, object p1) { throw null; }
- public static string EntityClient_ExecutingOnClosedConnection(object p0) { throw null; }
- public static string EntityClient_FailedToGetInformation(object p0) { throw null; }
- public static string EntityClient_FunctionImportMustBeNonComposable(object p0) { throw null; }
- public static string EntityClient_IncompatibleNavigationPropertyResult(object p0, object p1) { throw null; }
- public static string EntityClient_InvalidParameterDirection(object p0) { throw null; }
- public static string EntityClient_InvalidParameterName(object p0) { throw null; }
- public static string EntityClient_ItemCollectionsNotRegisteredInWorkspace(object p0) { throw null; }
- public static string EntityClient_KeywordNotSupported(object p0) { throw null; }
- public static string EntityClient_NestedNamedConnection(object p0) { throw null; }
- public static string EntityClient_ProviderSpecificError(object p0) { throw null; }
- public static string EntityClient_ReturnedNullOnProviderMethod(object p0, object p1) { throw null; }
- public static string EntityClient_UnableToFindFunctionImport(object p0, object p1) { throw null; }
- public static string EntityClient_UnableToFindFunctionImportContainer(object p0) { throw null; }
- public static string EntityClient_UnknownParameterType(object p0) { throw null; }
- public static string EntityClient_UnmappedFunctionImport(object p0) { throw null; }
- public static string EntityClient_UnsupportedDbType(object p0, object p1) { throw null; }
- public static string EntityContainerAlreadyExists(object p0) { throw null; }
- public static string EntityContainerCannotExtendItself(object p0) { throw null; }
- public static string EntityKeyMustBeScalar(object p0, object p1) { throw null; }
- public static string EntityKeyTypeCurrentlyNotSupported(object p0, object p1, object p2) { throw null; }
- public static string EntityKeyTypeCurrentlyNotSupportedInSSDL(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string EntityKey_DoesntMatchKeyOnEntity(object p0) { throw null; }
- public static string EntityKey_EntitySetDoesNotMatch(object p0) { throw null; }
- public static string EntityKey_EntityTypesDoNotMatch(object p0, object p1) { throw null; }
- public static string EntityKey_IncorrectNumberOfKeyValuePairs(object p0, object p1, object p2) { throw null; }
- public static string EntityKey_IncorrectValueType(object p0, object p1, object p2) { throw null; }
- public static string EntityKey_InvalidName(object p0) { throw null; }
- public static string EntityKey_MissingKeyValue(object p0, object p1) { throw null; }
- public static string EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember(object p0, object p1) { throw null; }
- public static string EntityKey_NullKeyValue(object p0, object p1) { throw null; }
- public static string EntityParameterCollectionInvalidIndex(object p0, object p1) { throw null; }
- public static string EntityParameterCollectionInvalidParameterName(object p0) { throw null; }
- public static string EntityProxyTypeInfo_CannotSetEntityCollectionProperty(object p0, object p1) { throw null; }
- public static string EntityProxyTypeInfo_DuplicateOSpaceType(object p0) { throw null; }
- public static string EntityProxyTypeInfo_ProxyMetadataIsUnavailable(object p0) { throw null; }
- public static string EntityReference_CannotAddMoreThanOneEntityToEntityReference(object p0, object p1) { throw null; }
- public static string EntityReference_ExpectedReferenceGotCollection(object p0, object p1, object p2) { throw null; }
- public static string EntitySetNotInCSPace(object p0) { throw null; }
- public static string EntitySetTypeHasNoKeys(object p0, object p1) { throw null; }
- public static string EnumMemberValueOutOfItsUnderylingTypeRange(object p0, object p1, object p2) { throw null; }
- public static string ExpressionTypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
- public static string ExpressionTypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
- public static string FacetNotAllowed(object p0, object p1) { throw null; }
- public static string FacetsOnNonScalarType(object p0) { throw null; }
- public static string FailedToFindClrTypeMapping(object p0) { throw null; }
- public static string FailedToFindCSpaceTypeMapping(object p0) { throw null; }
- public static string FailedToFindOSpaceTypeMapping(object p0) { throw null; }
- public static string FailedToResolveAggregateFunction(object p0) { throw null; }
- public static string FunctionImportCollectionAndRefParametersNotAllowed(object p0) { throw null; }
- public static string FunctionImportComposableAndSideEffectingNotAllowed(object p0) { throw null; }
- public static string FunctionImportEntitySetAndEntitySetPathDeclared(object p0) { throw null; }
- public static string FunctionImportEntityTypeDoesNotMatchEntitySet(object p0, object p1, object p2) { throw null; }
- public static string FunctionImportNonNullableParametersNotAllowed(object p0) { throw null; }
- public static string FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet(object p0) { throw null; }
- public static string FunctionImportSpecifiesEntitySetButNotEntityType(object p0) { throw null; }
- public static string FunctionImportUnknownEntitySet(object p0, object p1) { throw null; }
- public static string FunctionImportWithUnsupportedReturnTypeV1(object p0) { throw null; }
- public static string FunctionImportWithUnsupportedReturnTypeV1_1(object p0) { throw null; }
- public static string FunctionImportWithUnsupportedReturnTypeV2(object p0) { throw null; }
- public static string FunctionWithNonEdmPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
- public static string FunctionWithNonPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
- public static string GeneralExceptionAsQueryInnerException(object p0) { throw null; }
- public static string Generated_Views_Invalid_Extent(object p0) { throw null; }
- public static string Generated_View_Type_Super_Class(object p0) { throw null; }
- public static string GenericTypeNotSupported(object p0) { throw null; }
- public static string InferRelationshipEndAmbiguous(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string InferRelationshipEndFailedNoEntitySetMatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string InferRelationshipEndGivesAlreadyDefinedEnd(object p0, object p1) { throw null; }
- public static string InvalidAction(object p0, object p1) { throw null; }
- public static string InvalidAliasName(object p0) { throw null; }
- public static string InvalidAssociationTypeForUnion(object p0) { throw null; }
- public static string InvalidBaseTypeForItemType(object p0, object p1) { throw null; }
- public static string InvalidBaseTypeForNestedType(object p0, object p1) { throw null; }
- public static string InvalidBaseTypeForStructuredType(object p0, object p1) { throw null; }
- public static string InvalidCast(object p0, object p1) { throw null; }
- public static string InvalidCollectionForMapping(object p0) { throw null; }
- public static string InvalidCollectionSpecified(object p0) { throw null; }
- public static string InvalidComplexType(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidCtorArgumentType(object p0, object p1, object p2) { throw null; }
- public static string InvalidCtorUseOnType(object p0) { throw null; }
- public static string InvalidDateTimeOffsetLiteral(object p0) { throw null; }
- public static string InvalidDay(object p0, object p1) { throw null; }
- public static string InvalidDayInMonth(object p0, object p1, object p2) { throw null; }
- public static string InvalidDefaultBinaryWithNoMaxLength(object p0) { throw null; }
- public static string InvalidDefaultBoolean(object p0) { throw null; }
- public static string InvalidDefaultDateTime(object p0, object p1) { throw null; }
- public static string InvalidDefaultDateTimeOffset(object p0, object p1) { throw null; }
- public static string InvalidDefaultDecimal(object p0, object p1, object p2) { throw null; }
- public static string InvalidDefaultFloatingPoint(object p0, object p1, object p2) { throw null; }
- public static string InvalidDefaultGuid(object p0) { throw null; }
- public static string InvalidDefaultIntegral(object p0, object p1, object p2) { throw null; }
- public static string InvalidDefaultTime(object p0, object p1) { throw null; }
- public static string InvalidDeRefProperty(object p0, object p1, object p2) { throw null; }
- public static string InvalidEDMVersion(object p0) { throw null; }
- public static string InvalidEndEntitySetTypeMismatch(object p0) { throw null; }
- public static string InvalidEndRoleInRelationshipConstraint(object p0, object p1) { throw null; }
- public static string InvalidEntityContainerNameInExtends(object p0) { throw null; }
- public static string InvalidEntityEndName(object p0, object p1) { throw null; }
- public static string InvalidEntityParameterType(object p0) { throw null; }
- public static string InvalidEntityRootTypeArgument(object p0, object p1) { throw null; }
- public static string InvalidEntitySetName(object p0) { throw null; }
- public static string InvalidEntitySetNameReference(object p0, object p1) { throw null; }
- public static string InvalidEntitySetType(object p0) { throw null; }
- public static string InvalidEntityTypeArgument(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidEscapedIdentifier(object p0) { throw null; }
- public static string InvalidEscapedIdentifierUnbalanced(object p0) { throw null; }
- public static string InvalidExpressionResolutionClass(object p0, object p1) { throw null; }
- public static string InvalidFileExtension(object p0, object p1, object p2) { throw null; }
- public static string InvalidFromPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
- public static string InvalidGroupIdentifierReference(object p0) { throw null; }
- public static string InvalidHour(object p0, object p1) { throw null; }
- public static string InvalidImplicitRelationshipFromEnd(object p0) { throw null; }
- public static string InvalidImplicitRelationshipToEnd(object p0) { throw null; }
- public static string InvalidInExprArgs(object p0, object p1) { throw null; }
- public static string InvalidKeyArgument(object p0) { throw null; }
- public static string InvalidKeyKeyDefinedInBaseClass(object p0, object p1) { throw null; }
- public static string InvalidKeyMember(object p0) { throw null; }
- public static string InvalidKeyNoProperty(object p0, object p1) { throw null; }
- public static string InvalidKeyNullablePart(object p0, object p1) { throw null; }
- public static string InvalidKeyTypeForCollation(object p0) { throw null; }
- public static string InvalidLiteralFormat(object p0, object p1) { throw null; }
- public static string InvalidMemberNameMatchesTypeName(object p0, object p1) { throw null; }
- public static string InvalidMetadataMemberClassResolution(object p0, object p1, object p2) { throw null; }
- public static string InvalidMinute(object p0, object p1) { throw null; }
- public static string InvalidMonth(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityFromRoleToPropertyNonNullableV1(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityFromRoleToPropertyNonNullableV2(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityFromRoleToPropertyNullableV1(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityFromRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityToRoleLowerBoundMustBeZero(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityToRoleUpperBoundMustBeMany(object p0, object p1) { throw null; }
- public static string InvalidMultiplicityToRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
- public static string InvalidName(object p0, object p1) { throw null; }
- public static string InvalidNamespaceInUsing(object p0) { throw null; }
- public static string InvalidNamespaceOrAliasSpecified(object p0) { throw null; }
- public static string InvalidNullLiteralForNonNullableMember(object p0, object p1) { throw null; }
- public static string InvalidNumberOfParametersForAggregateFunction(object p0) { throw null; }
- public static string InvalidParameterFormat(object p0) { throw null; }
- public static string InvalidParameterTypeForAggregateFunction(object p0, object p1) { throw null; }
- public static string InvalidPlaceholderRootTypeArgument(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidPlaceholderTypeArgument(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string InvalidPrimitiveTypeKind(object p0) { throw null; }
- public static string InvalidPropertyInRelationshipConstraint(object p0, object p1) { throw null; }
- public static string InvalidPropertyType(object p0) { throw null; }
- public static string InvalidQueryResultType(object p0) { throw null; }
- public static string InvalidRelationshipEndMultiplicity(object p0, object p1) { throw null; }
- public static string InvalidRelationshipEndType(object p0, object p1) { throw null; }
- public static string InvalidRelationshipMember(object p0, object p1) { throw null; }
- public static string InvalidRelationshipSetName(object p0) { throw null; }
- public static string InvalidRelationshipSetType(object p0) { throw null; }
- public static string InvalidRootComplexType(object p0, object p1) { throw null; }
- public static string InvalidRootRowType(object p0, object p1) { throw null; }
- public static string InvalidRowType(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidSchemaEncountered(object p0) { throw null; }
- public static string InvalidSecond(object p0, object p1) { throw null; }
- public static string InvalidSimpleIdentifier(object p0) { throw null; }
- public static string InvalidSimpleIdentifierNonASCII(object p0) { throw null; }
- public static string InvalidSize(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidStringArgument(object p0) { throw null; }
- public static string InvalidSystemReferenceId(object p0, object p1, object p2, object p3) { throw null; }
- public static string InvalidToPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
- public static string InvalidUnarySetOpArgument(object p0) { throw null; }
- public static string InvalidUnsignedTypeForUnaryMinusOperation(object p0) { throw null; }
- public static string InvalidUseOfWebPath(object p0) { throw null; }
- public static string InvalidValueForParameterTypeSemanticsAttribute(object p0) { throw null; }
- public static string InvalidWithRelationshipTargetEndMultiplicity(object p0, object p1) { throw null; }
- public static string InvalidYear(object p0, object p1) { throw null; }
- public static string Iqt_General_UnsupportedOp(object p0) { throw null; }
- public static string ItemCollectionAlreadyRegistered(object p0) { throw null; }
- public static string ItemDuplicateIdentity(object p0) { throw null; }
- public static string ItemInvalidIdentity(object p0) { throw null; }
- public static string KeyMissingOnEntityType(object p0) { throw null; }
- public static string KeyMustBeCorrelated(object p0) { throw null; }
- public static string LiteralTypeNotFoundInMetadata(object p0) { throw null; }
- public static string LiteralTypeNotSupported(object p0) { throw null; }
- public static string MalformedXml(object p0, object p1) { throw null; }
- public static string Mapping_AbstractTypeMappingToNonAbstractType(object p0, object p1) { throw null; }
- public static string Mapping_AllQueryViewAtCompileTime(object p0) { throw null; }
- public static string Mapping_AlreadyMapped_StorageEntityContainer(object p0) { throw null; }
- public static string Mapping_CannotMapCLRTypeMultipleTimes(object p0) { throw null; }
- public static string Mapping_Default_OCMapping_Clr_Member(object p0, object p1, object p2) { throw null; }
- public static string Mapping_Default_OCMapping_Clr_Member2(object p0, object p1, object p2) { throw null; }
- public static string Mapping_Default_OCMapping_Invalid_MemberType(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Mapping_Default_OCMapping_MemberKind_Mismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Mapping_Default_OCMapping_Member_Count_Mismatch(object p0, object p1) { throw null; }
- public static string Mapping_Default_OCMapping_MultiplicityMismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Mapping_Duplicate_CdmAssociationSet_StorageMap(object p0) { throw null; }
- public static string Mapping_Duplicate_PropertyMap_CaseInsensitive(object p0) { throw null; }
- public static string Mapping_Duplicate_Type(object p0) { throw null; }
- public static string Mapping_Empty_QueryView(object p0) { throw null; }
- public static string Mapping_Empty_QueryView_OfType(object p0, object p1) { throw null; }
- public static string Mapping_Empty_QueryView_OfTypeOnly(object p0, object p1) { throw null; }
- public static string Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_EnumTypeMappingToNonEnumType(object p0, object p1) { throw null; }
- public static string Mapping_Enum_EmptyValue(object p0) { throw null; }
- public static string Mapping_Enum_InvalidValue(object p0) { throw null; }
- public static string Mapping_Enum_OCMapping_MemberMismatch(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_Enum_OCMapping_UnderlyingTypesMismatch(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_FunctionImport_CannotInferTargetFunctionKeys(object p0) { throw null; }
- public static string Mapping_FunctionImport_ConditionValueTypeMismatch(object p0, object p1, object p2) { throw null; }
- public static string Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_FunctionAmbiguous(object p0) { throw null; }
- public static string Mapping_FunctionImport_FunctionImportDoesNotExist(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_FunctionImportMappedMultipleTimes(object p0) { throw null; }
- public static string Mapping_FunctionImport_ImplicitMappingForAbstractReturnType(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter(object p0) { throw null; }
- public static string Mapping_FunctionImport_IncompatibleEnumParameterType(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_FunctionImport_IncompatibleParameterMode(object p0, object p1, object p2) { throw null; }
- public static string Mapping_FunctionImport_IncompatibleParameterType(object p0, object p1, object p2) { throw null; }
- public static string Mapping_FunctionImport_InvalidContentEntityTypeForEntitySet(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_FunctionImport_PropertyNotMapped(object p0, object p1, object p2) { throw null; }
- public static string Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount(object p0) { throw null; }
- public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected(object p0) { throw null; }
- public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected(object p0) { throw null; }
- public static string Mapping_FunctionImport_ResultMapping_InvalidSType(object p0) { throw null; }
- public static string Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_RowsAffectedParameterDoesNotExist(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongMode(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongType(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_ScalarMappingToMulticolumnTVF(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_ScalarMappingTypeMismatch(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_FunctionImport_StoreFunctionDoesNotExist(object p0) { throw null; }
- public static string Mapping_FunctionImport_TargetFunctionMustBeComposable(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_TargetFunctionMustBeNonComposable(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter(object p0) { throw null; }
- public static string Mapping_FunctionImport_UnreachableIsTypeOf(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_UnreachableType(object p0, object p1) { throw null; }
- public static string Mapping_FunctionImport_UnsupportedType(object p0, object p1) { throw null; }
- public static string Mapping_InvalidContent_AbstractEntity_FunctionMapping(object p0) { throw null; }
- public static string Mapping_InvalidContent_AbstractEntity_IsOfType(object p0) { throw null; }
- public static string Mapping_InvalidContent_AbstractEntity_Type(object p0) { throw null; }
- public static string Mapping_InvalidContent_AssociationSet_Condition(object p0) { throw null; }
- public static string Mapping_InvalidContent_Association_Set(object p0) { throw null; }
- public static string Mapping_InvalidContent_Association_Type(object p0) { throw null; }
- public static string Mapping_InvalidContent_Cdm_Member(object p0) { throw null; }
- public static string Mapping_InvalidContent_Column(object p0) { throw null; }
- public static string Mapping_InvalidContent_Complex_Type(object p0) { throw null; }
- public static string Mapping_InvalidContent_ConditionMapping_Computed(object p0) { throw null; }
- public static string Mapping_InvalidContent_ConditionMapping_InvalidMember(object p0) { throw null; }
- public static string Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind(object p0, object p1) { throw null; }
- public static string Mapping_InvalidContent_Duplicate_Cdm_Member(object p0) { throw null; }
- public static string Mapping_InvalidContent_Duplicate_Condition_Member(object p0) { throw null; }
- public static string Mapping_InvalidContent_Emtpty_SetMap(object p0) { throw null; }
- public static string Mapping_InvalidContent_End(object p0) { throw null; }
- public static string Mapping_InvalidContent_EndProperty(object p0) { throw null; }
- public static string Mapping_InvalidContent_EntityContainer(object p0) { throw null; }
- public static string Mapping_InvalidContent_Entity_Set(object p0) { throw null; }
- public static string Mapping_InvalidContent_Entity_Type(object p0) { throw null; }
- public static string Mapping_InvalidContent_Entity_Type_For_Entity_Set(object p0, object p1, object p2) { throw null; }
- public static string Mapping_InvalidContent_ForeignKey_Association_Set(object p0) { throw null; }
- public static string Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK(object p0) { throw null; }
- public static string Mapping_InvalidContent_StorageEntityContainer(object p0) { throw null; }
- public static string Mapping_InvalidContent_Table(object p0) { throw null; }
- public static string Mapping_InvalidMappingSchema_Parsing(object p0) { throw null; }
- public static string Mapping_InvalidMappingSchema_validation(object p0) { throw null; }
- public static string Mapping_Invalid_Association_Type_For_Association_Set(object p0, object p1, object p2) { throw null; }
- public static string Mapping_Invalid_CSide_ScalarProperty(object p0) { throw null; }
- public static string Mapping_Invalid_CSRootElementMissing(object p0, object p1, object p2) { throw null; }
- public static string Mapping_Invalid_Member_Mapping(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Mapping_Invalid_QueryView(object p0, object p1) { throw null; }
- public static string Mapping_Invalid_QueryView2(object p0, object p1) { throw null; }
- public static string Mapping_Invalid_QueryView_Type(object p0) { throw null; }
- public static string Mapping_Invalid_Query_Views_MissingSetClosure(object p0) { throw null; }
- public static string Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AmbiguousFunction(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AmbiguousResultBinding(object p0, object p1) { throw null; }
- public static string Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType(object p0, object p1, object p2) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetAmbiguous(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetCardinality(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetDoesNotExist(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet(object p0) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetNotMappedForOperation(object p0, object p1, object p2, object p3) { throw null; }
- public static string Mapping_ModificationFunction_AssociationSetRoleDoesNotExist(object p0) { throw null; }
- public static string Mapping_ModificationFunction_ComplexTypeNotFound(object p0) { throw null; }
- public static string Mapping_ModificationFunction_MissingEntityType(object p0) { throw null; }
- public static string Mapping_ModificationFunction_MissingParameter(object p0, object p1) { throw null; }
- public static string Mapping_ModificationFunction_MissingSetClosure(object p0) { throw null; }
- public static string Mapping_ModificationFunction_MultipleEndsOfAssociationMapped(object p0, object p1, object p2) { throw null; }
- public static string Mapping_ModificationFunction_NotValidFunction(object p0) { throw null; }
- public static string Mapping_ModificationFunction_NotValidFunctionParameter(object p0, object p1, object p2) { throw null; }
- public static string Mapping_ModificationFunction_ParameterBoundTwice(object p0) { throw null; }
- public static string Mapping_ModificationFunction_ParameterNotFound(object p0, object p1) { throw null; }
- public static string Mapping_ModificationFunction_PropertyNotFound(object p0, object p1) { throw null; }
- public static string Mapping_ModificationFunction_PropertyNotKey(object p0, object p1) { throw null; }
- public static string Mapping_ModificationFunction_PropertyParameterTypeMismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Mapping_ModificationFunction_RedundantEntityTypeMapping(object p0) { throw null; }
- public static string Mapping_ModificationFunction_UnknownFunction(object p0) { throw null; }
- public static string Mapping_ModificationFunction_WrongComplexType(object p0, object p1) { throw null; }
- public static string Mapping_NotFound_EntityContainer(object p0) { throw null; }
- public static string Mapping_Object_InvalidType(object p0) { throw null; }
- public static string Mapping_ProviderReturnsNullType(object p0) { throw null; }
- public static string Mapping_Provider_WrongConnectionType(object p0) { throw null; }
- public static string Mapping_Provider_WrongManifestType(object p0) { throw null; }
- public static string Mapping_QueryViewMultipleTypeInTypeName(object p0) { throw null; }
- public static string Mapping_QueryView_Duplicate_OfType(object p0, object p1) { throw null; }
- public static string Mapping_QueryView_Duplicate_OfTypeOnly(object p0, object p1) { throw null; }
- public static string Mapping_QueryView_For_Base_Type(object p0, object p1) { throw null; }
- public static string Mapping_QueryView_PropertyMaps(object p0) { throw null; }
- public static string Mapping_QueryView_TypeName_Not_Defined(object p0) { throw null; }
- public static string Mapping_Storage_InvalidSpace(object p0) { throw null; }
- public static string Mapping_StoreTypeMismatch_ScalarPropertyMapping(object p0, object p1) { throw null; }
- public static string Mapping_TableName_QueryView(object p0) { throw null; }
- public static string Mapping_UnsupportedExpressionKind_QueryView(object p0, object p1, object p2) { throw null; }
- public static string Mapping_UnsupportedFunctionCall_QueryView(object p0, object p1) { throw null; }
- public static string Mapping_UnsupportedInitialization_QueryView(object p0, object p1) { throw null; }
- public static string Mapping_UnsupportedPropertyKind_QueryView(object p0, object p1, object p2) { throw null; }
- public static string Mapping_UnsupportedScanTarget_QueryView(object p0, object p1) { throw null; }
- public static string Mapping_Views_For_Extent_Not_Generated(object p0, object p1) { throw null; }
- public static string Materializer_AddedEntityAlreadyExists(object p0) { throw null; }
- public static string Materializer_InvalidCastNullable(object p0, object p1) { throw null; }
- public static string Materializer_InvalidCastReference(object p0, object p1) { throw null; }
- public static string Materializer_NullReferenceCast(object p0) { throw null; }
- public static string Materializer_PropertyIsNotNullableWithName(object p0) { throw null; }
- public static string Materializer_RecyclingEntity(object p0, object p1, object p2, object p3) { throw null; }
- public static string Materializer_SetInvalidValue(object p0, object p1, object p2, object p3) { throw null; }
- public static string MemberDoesNotBelongToEntityContainer(object p0, object p1) { throw null; }
- public static string MemberInvalidIdentity(object p0) { throw null; }
- public static string MinAndMaxMustBePositive(object p0, object p1) { throw null; }
- public static string MinAndMaxValueMustBeDifferentForNonConstantFacet(object p0, object p1) { throw null; }
- public static string MinAndMaxValueMustBeSameForConstantFacet(object p0, object p1) { throw null; }
- public static string MinMustBeLessThanMax(object p0, object p1, object p2) { throw null; }
- public static string MissingConstraintOnRelationshipType(object p0) { throw null; }
- public static string MissingDefaultValueForConstantFacet(object p0, object p1) { throw null; }
- public static string MissingEntityContainerEnd(object p0, object p1) { throw null; }
- public static string MissingFacetDescription(object p0, object p1, object p2) { throw null; }
- public static string MoreThanOneItemMatchesIdentity(object p0) { throw null; }
- public static string MultipleDefinitionsOfParameter(object p0) { throw null; }
- public static string MultipleDefinitionsOfVariable(object p0) { throw null; }
- public static string NamespaceAliasAlreadyUsed(object p0) { throw null; }
- public static string NamespaceAlreadyImported(object p0) { throw null; }
- public static string NavigationPropertyRelationshipEndTypeMismatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string NeedNotUseSystemNamespaceInUsing(object p0) { throw null; }
- public static string NestedAggregateCannotBeUsedInAggregate(object p0, object p1) { throw null; }
- public static string NestedClassNotSupported(object p0, object p1) { throw null; }
- public static string NewTypeConflictsWithExistingType(object p0, object p1) { throw null; }
- public static string NoAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
- public static string NoCanonicalAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
- public static string NoCanonicalFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
- public static string NoCodeGenNamespaceInStructuralAnnotation(object p0) { throw null; }
- public static string NoCollectionForSpace(object p0) { throw null; }
- public static string NoFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
- public static string NoStoreTypeForEdmType(object p0, object p1) { throw null; }
- public static string NotAMemberOfCollection(object p0, object p1) { throw null; }
- public static string NotAMemberOfType(object p0, object p1) { throw null; }
- public static string NotASuperOrSubType(object p0, object p1) { throw null; }
- public static string NotInNamespaceAlias(object p0, object p1, object p2) { throw null; }
- public static string NotInNamespaceNoAlias(object p0, object p1) { throw null; }
- public static string NotNamespaceQualified(object p0) { throw null; }
- public static string NullParameterForEdmRelationshipAttribute(object p0, object p1) { throw null; }
- public static string NullRelationshipNameforEdmRelationshipAttribute(object p0) { throw null; }
- public static string NumberOfTypeCtorIsLessThenFormalSpec(object p0) { throw null; }
- public static string NumberOfTypeCtorIsMoreThenFormalSpec(object p0) { throw null; }
- public static string ObjectContext_AcceptAllChangesFailure(object p0) { throw null; }
- public static string ObjectContext_CannotExplicitlyLoadDetachedRelationships(object p0) { throw null; }
- public static string ObjectContext_CannotLoadReferencesUsingDifferentContext(object p0) { throw null; }
- public static string ObjectContext_ClientEntityRemovedFromStore(object p0) { throw null; }
- public static string ObjectContext_EntitiesHaveDifferentType(object p0, object p1) { throw null; }
- public static string ObjectContext_EntityContainerNotFoundForName(object p0) { throw null; }
- public static string ObjectContext_EntityMustBeUnchangedOrModified(object p0) { throw null; }
- public static string ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted(object p0) { throw null; }
- public static string ObjectContext_EntityNotInObjectSet_Delete(object p0, object p1, object p2, object p3) { throw null; }
- public static string ObjectContext_EntityNotInObjectSet_Detach(object p0, object p1, object p2, object p3) { throw null; }
- public static string ObjectContext_EntitySetNotFoundForName(object p0) { throw null; }
- public static string ObjectContext_ExecuteFunctionCalledWithNonQueryFunction(object p0) { throw null; }
- public static string ObjectContext_ExecuteFunctionCalledWithNullParameter(object p0) { throw null; }
- public static string ObjectContext_ExecuteFunctionCalledWithScalarFunction(object p0, object p1) { throw null; }
- public static string ObjectContext_ExecuteFunctionTypeMismatch(object p0, object p1) { throw null; }
- public static string ObjectContext_InvalidDefaultContainerName(object p0) { throw null; }
- public static string ObjectContext_InvalidEntitySetForStoreQuery(object p0, object p1, object p2) { throw null; }
- public static string ObjectContext_InvalidEntitySetInKey(object p0, object p1, object p2, object p3) { throw null; }
- public static string ObjectContext_InvalidEntitySetInKeyFromName(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string ObjectContext_InvalidEntitySetOnEntity(object p0, object p1) { throw null; }
- public static string ObjectContext_InvalidObjectSetTypeForEntitySet(object p0, object p1, object p2) { throw null; }
- public static string ObjectContext_InvalidTypeForStoreQuery(object p0) { throw null; }
- public static string ObjectContext_MultipleEntitySetsFoundInAllContainers(object p0) { throw null; }
- public static string ObjectContext_MultipleEntitySetsFoundInSingleContainer(object p0, object p1) { throw null; }
- public static string ObjectContext_NoEntitySetFoundForType(object p0) { throw null; }
- public static string ObjectContext_NoMappingForEntityType(object p0) { throw null; }
- public static string ObjectContext_NthElementInAddedState(object p0) { throw null; }
- public static string ObjectContext_NthElementIsDuplicate(object p0) { throw null; }
- public static string ObjectContext_NthElementIsNull(object p0) { throw null; }
- public static string ObjectContext_NthElementNotInObjectStateManager(object p0) { throw null; }
- public static string ObjectContext_TwoPropertiesMappedToSameColumn(object p0, object p1) { throw null; }
- public static string ObjectParameterCollection_DuplicateParameterName(object p0) { throw null; }
- public static string ObjectParameterCollection_ParameterAlreadyExists(object p0) { throw null; }
- public static string ObjectParameterCollection_ParameterNameNotFound(object p0) { throw null; }
- public static string ObjectParameter_InvalidParameterName(object p0) { throw null; }
- public static string ObjectParameter_InvalidParameterType(object p0) { throw null; }
- public static string ObjectQuery_InvalidQueryName(object p0) { throw null; }
- public static string ObjectQuery_QueryBuilder_InvalidResultType(object p0) { throw null; }
- public static string ObjectQuery_Span_NoNavProp(object p0, object p1) { throw null; }
- public static string ObjectQuery_UnableToMaterializeArbitaryProjectionType(object p0) { throw null; }
- public static string ObjectQuery_UnableToMaterializeArray(object p0, object p1) { throw null; }
- public static string ObjectStateEntry_CannotModifyKeyProperty(object p0) { throw null; }
- public static string ObjectStateEntry_ChangedInDifferentStateFromChanging(object p0, object p1) { throw null; }
- public static string ObjectStateEntry_ChangeOnUnmappedComplexProperty(object p0) { throw null; }
- public static string ObjectStateEntry_ChangeOnUnmappedProperty(object p0) { throw null; }
- public static string ObjectStateEntry_ComplexObjectUsedMultipleTimes(object p0, object p1) { throw null; }
- public static string ObjectStateEntry_NullOriginalValueForNonNullableProperty(object p0, object p1, object p2) { throw null; }
- public static string ObjectStateEntry_SetModifiedOnInvalidProperty(object p0) { throw null; }
- public static string ObjectStateEntry_SetModifiedStates(object p0) { throw null; }
- public static string ObjectStateEntry_SetOriginalComplexProperties(object p0) { throw null; }
- public static string ObjectStateEntry_SetOriginalPrimaryKey(object p0) { throw null; }
- public static string ObjectStateEntry_UnableToEnumerateCollection(object p0, object p1) { throw null; }
- public static string ObjectStateManager_ConflictingChangesOfRelationshipDetected(object p0, object p1) { throw null; }
- public static string ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity(object p0) { throw null; }
- public static string ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType(object p0, object p1) { throw null; }
- public static string ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey(object p0) { throw null; }
- public static string ObjectStateManager_NoEntryExistsForObject(object p0) { throw null; }
- public static string ObjectView_CannotResolveTheEntitySet(object p0) { throw null; }
- public static string OfTypeExpressionElementTypeMustBeEntityType(object p0, object p1) { throw null; }
- public static string OfTypeExpressionElementTypeMustBeNominalType(object p0, object p1) { throw null; }
- public static string OfTypeOnlyTypeArgumentCannotBeAbstract(object p0) { throw null; }
- public static string ParameterNameAlreadyDefinedDuplicate(object p0) { throw null; }
- public static string ParameterTypeNotSupported(object p0, object p1) { throw null; }
- public static string ParameterWasNotDefined(object p0) { throw null; }
- public static string PlaceholderExpressionMustBeCompatibleWithEdm64(object p0, object p1) { throw null; }
- public static string PlaceholderExpressionMustBeConstant(object p0) { throw null; }
- public static string PlaceholderExpressionMustBeGreaterThanOrEqualToZero(object p0) { throw null; }
- public static string PlaceholderSetArgTypeIsNotEqualComparable(object p0, object p1, object p2) { throw null; }
- public static string PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType(object p0, object p1) { throw null; }
- public static string PocoEntityWrapper_UnableToSetFieldOrProperty(object p0, object p1) { throw null; }
- public static string PocoEntityWrapper_UnexpectedTypeForNavigationProperty(object p0, object p1) { throw null; }
- public static string PrecisionMustBeGreaterThanScale(object p0, object p1) { throw null; }
- public static string PrecisionOutOfRange(object p0, object p1, object p2, object p3) { throw null; }
- public static string PropertyNameAlreadyDefinedDuplicate(object p0) { throw null; }
- public static string PropertyTypeAlreadyDefined(object p0) { throw null; }
- public static string ProviderDoesNotSupportType(object p0) { throw null; }
- public static string ProviderReturnedNullForGetDbInformation(object p0) { throw null; }
- public static string RefArgIsNotOfEntityType(object p0) { throw null; }
- public static string ReferenceToNonEntityType(object p0) { throw null; }
- public static string RefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
- public static string RelatedEndExprTypeMustBePromotoableToToEnd(object p0, object p1) { throw null; }
- public static string RelatedEnd_CannotAddToFixedSizeArray(object p0) { throw null; }
- public static string RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities(object p0) { throw null; }
- public static string RelatedEnd_CannotRemoveFromFixedSizeArray(object p0) { throw null; }
- public static string RelatedEnd_CannotSerialize(object p0) { throw null; }
- public static string RelatedEnd_EntitySetIsNotValidForRelationship(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string RelatedEnd_InvalidContainedType_Collection(object p0, object p1) { throw null; }
- public static string RelatedEnd_InvalidContainedType_Reference(object p0, object p1) { throw null; }
- public static string RelatedEnd_InvalidNthElementContextForAttach(object p0) { throw null; }
- public static string RelatedEnd_InvalidNthElementNullForAttach(object p0) { throw null; }
- public static string RelatedEnd_InvalidNthElementStateForAttach(object p0) { throw null; }
- public static string RelatedEnd_InvalidRelationshipFixupDetected(object p0, object p1) { throw null; }
- public static string RelatedEnd_MismatchedMergeOptionOnLoad(object p0) { throw null; }
- public static string RelatedEnd_RelatedEndNotAttachedToContext(object p0) { throw null; }
- public static string RelationshipManager_CollectionAlreadyInitialized(object p0) { throw null; }
- public static string RelationshipManager_CollectionRelationshipManagerAttached(object p0) { throw null; }
- public static string RelationshipManager_InvalidTargetRole(object p0, object p1) { throw null; }
- public static string RelationshipManager_NavigationPropertyNotFound(object p0) { throw null; }
- public static string RelationshipManager_OwnerIsNotSourceType(object p0, object p1, object p2, object p3) { throw null; }
- public static string RelationshipManager_ReferenceAlreadyInitialized(object p0) { throw null; }
- public static string RelationshipManager_RelationshipManagerAttached(object p0) { throw null; }
- public static string RelationshipManager_UnableToFindRelationshipTypeInMetadata(object p0) { throw null; }
- public static string RelationshipNameInNavigationPropertyNotValid(object p0, object p1, object p2) { throw null; }
- public static string RelationshipTargetMustBeUnique(object p0) { throw null; }
- public static string RelationshipTypeExpected(object p0) { throw null; }
- public static string RequiredFacetMissing(object p0, object p1) { throw null; }
- public static string RoleTypeInEdmRelationshipAttributeIsInvalidType(object p0, object p1, object p2) { throw null; }
- public static string SameRoleNameOnRelationshipAttribute(object p0, object p1) { throw null; }
- public static string SameRoleReferredInReferentialConstraint(object p0) { throw null; }
- public static string ScaleOutOfRange(object p0, object p1, object p2, object p3) { throw null; }
- public static string SimilarRelationshipEnd(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string SourceTypeMustBePromotoableToFromEndRelationType(object p0, object p1) { throw null; }
- public static string SqlGen_CanonicalFunctionNotSupportedPriorSql10(object p0) { throw null; }
- public static string SqlGen_InvalidDatePartArgumentExpression(object p0, object p1) { throw null; }
- public static string SqlGen_InvalidDatePartArgumentValue(object p0, object p1, object p2) { throw null; }
- public static string SqlGen_PrimitiveTypeNotSupportedPriorSql10(object p0) { throw null; }
- public static string SqlGen_TypedNaNNotSupported(object p0) { throw null; }
- public static string SqlGen_TypedNegativeInfinityNotSupported(object p0, object p1) { throw null; }
- public static string SqlGen_TypedPositiveInfinityNotSupported(object p0, object p1) { throw null; }
- public static string SqlProvider_InvalidGeographyColumn(object p0) { throw null; }
- public static string SqlProvider_InvalidGeometryColumn(object p0) { throw null; }
- public static string SqlProvider_NeedSqlDataReader(object p0) { throw null; }
- public static string SqlSpatialServices_ProviderValueNotSqlType(object p0) { throw null; }
- public static string StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping(object p0, object p1, object p2) { throw null; }
- public static string StoreItemCollectionMustHaveOneArtifact(object p0) { throw null; }
- public static string SystemNamespaceEncountered(object p0) { throw null; }
- public static string TableAndSchemaAreMutuallyExclusiveWithDefiningQuery(object p0) { throw null; }
- public static string TargetRoleNameInNavigationPropertyNotValid(object p0, object p1, object p2, object p3) { throw null; }
- public static string TextNotAllowed(object p0) { throw null; }
- public static string TooManyAssociationEnds(object p0) { throw null; }
- public static string TypeArgumentBelowMin(object p0) { throw null; }
- public static string TypeArgumentCountMismatch(object p0, object p1) { throw null; }
- public static string TypeArgumentExceedsMax(object p0) { throw null; }
- public static string TypeDoesNotSupportFacet(object p0, object p1) { throw null; }
- public static string TypeDoesNotSupportSpec(object p0) { throw null; }
- public static string TypeKindMismatch(object p0, object p1, object p2, object p3) { throw null; }
- public static string TypeMismatchRelationshipConstaint(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string TypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
- public static string TypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
- public static string TypeNameAlreadyDefinedDuplicate(object p0) { throw null; }
- public static string TypeNameNotFound(object p0) { throw null; }
- public static string TypeNotInAssociationSet(object p0, object p1, object p2) { throw null; }
- public static string TypeNotInEntitySet(object p0, object p1, object p2) { throw null; }
- public static string UnableToFindReflectedType(object p0, object p1) { throw null; }
- public static string UnableToResolveAssembly(object p0) { throw null; }
- public static string UnacceptableUri(object p0) { throw null; }
- public static string UnexpectedRootElement(object p0, object p1, object p2) { throw null; }
- public static string UnexpectedRootElementNoNamespace(object p0, object p1, object p2) { throw null; }
- public static string UnexpectedTypeInCollection(object p0, object p1) { throw null; }
- public static string UnexpectedXmlAttribute(object p0) { throw null; }
- public static string UnexpectedXmlElement(object p0) { throw null; }
- public static string UnexpectedXmlNodeType(object p0) { throw null; }
- public static string UnknownExpressionResolutionClass(object p0) { throw null; }
- public static string Update_AmbiguousForeignKey(object p0) { throw null; }
- public static string Update_ConcurrencyError(object p0) { throw null; }
- public static string Update_GeneratedDependent(object p0) { throw null; }
- public static string Update_InsertingOrUpdatingReferenceToDeletedEntity(object p0) { throw null; }
- public static string Update_MappingNotFound(object p0) { throw null; }
- public static string Update_MissingEntity(object p0, object p1) { throw null; }
- public static string Update_MissingFunctionMapping(object p0, object p1, object p2) { throw null; }
- public static string Update_MissingRequiredEntity(object p0, object p1, object p2) { throw null; }
- public static string Update_MissingRequiredRelationshipValue(object p0, object p1) { throw null; }
- public static string Update_MissingResultColumn(object p0) { throw null; }
- public static string Update_ModifyingIdentityColumn(object p0, object p1, object p2) { throw null; }
- public static string Update_NotSupportedComputedKeyColumn(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string Update_NotSupportedIdentityType(object p0, object p1) { throw null; }
- public static string Update_NotSupportedServerGenKey(object p0) { throw null; }
- public static string Update_NullReturnValueForNonNullableMember(object p0, object p1) { throw null; }
- public static string Update_NullValue(object p0) { throw null; }
- public static string Update_RelationshipCardinalityConstraintViolation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Update_RelationshipCardinalityConstraintViolationSingleValue(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string Update_RelationshipCardinalityViolation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string Update_ReturnValueHasUnexpectedType(object p0, object p1, object p2, object p3) { throw null; }
- public static string Update_SqlEntitySetWithoutDmlFunctions(object p0, object p1, object p2) { throw null; }
- public static string Update_UnableToConvertRowsAffectedParameterToInt32(object p0, object p1) { throw null; }
- public static string Update_UnsupportedCastArgument(object p0) { throw null; }
- public static string Update_UnsupportedExpressionKind(object p0, object p1) { throw null; }
- public static string Update_UnsupportedExtentType(object p0, object p1) { throw null; }
- public static string Update_UnsupportedJoinType(object p0) { throw null; }
- public static string Update_UnsupportedProjection(object p0) { throw null; }
- public static string Validator_NoKeyMembers(object p0) { throw null; }
- public static string Validator_NullableEntityKeyProperty(object p0, object p1) { throw null; }
- public static string Validator_OSpace_ComplexPropertyNotComplex(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_Convention_AmbiguousClrType(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_Convention_AttributeAssemblyReferenced(object p0) { throw null; }
- public static string Validator_OSpace_Convention_BaseTypeIncompatible(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_Convention_BaseTypeNotLoaded(object p0, object p1) { throw null; }
- public static string Validator_OSpace_Convention_MissingOSpaceType(object p0) { throw null; }
- public static string Validator_OSpace_Convention_MissingRequiredProperty(object p0, object p1) { throw null; }
- public static string Validator_OSpace_Convention_MultipleTypesWithSameName(object p0) { throw null; }
- public static string Validator_OSpace_Convention_NonPrimitiveTypeProperty(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_Convention_RelationshipNotLoaded(object p0, object p1) { throw null; }
- public static string Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch(object p0, object p1) { throw null; }
- public static string Validator_OSpace_Convention_Struct(object p0, object p1) { throw null; }
- public static string Validator_OSpace_InvalidNavPropReturnType(object p0, object p1, object p2) { throw null; }
- public static string Validator_OSpace_ScalarPropertyNotPrimitive(object p0, object p1, object p2) { throw null; }
- public static string Validator_UnsupportedEnumUnderlyingType(object p0) { throw null; }
- public static string ValueNotUnderstood(object p0, object p1) { throw null; }
- public static string ViewGen_AssociationEndShouldBeMappedToKey(object p0, object p1) { throw null; }
- public static string ViewGen_AssociationSetKey_Missing(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_AssociationSet_AsUserString(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_AssociationSet_AsUserString_Negated(object p0, object p1, object p2) { throw null; }
- public static string Viewgen_CannotGenerateQueryViewUnderNoValidation(object p0) { throw null; }
- public static string ViewGen_Cannot_Disambiguate_MultiConstant(object p0, object p1) { throw null; }
- public static string ViewGen_Cannot_Recover_Attributes(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_Cannot_Recover_Types(object p0, object p1) { throw null; }
- public static string ViewGen_Concurrency_Derived_Class(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_Concurrency_Invalid_Condition(object p0, object p1) { throw null; }
- public static string Viewgen_ConfigurationErrorMsg(object p0) { throw null; }
- public static string ViewGen_CQ_DomainConstraint(object p0) { throw null; }
- public static string ViewGen_CQ_PartitionConstraint(object p0) { throw null; }
- public static string ViewGen_Duplicate_CProperties(object p0) { throw null; }
- public static string ViewGen_Duplicate_CProperties_IsMapped(object p0, object p1) { throw null; }
- public static string ViewGen_EntitySetKey_Missing(object p0, object p1) { throw null; }
- public static string ViewGen_EntitySet_AsUserString(object p0, object p1) { throw null; }
- public static string ViewGen_EntitySet_AsUserString_Negated(object p0, object p1) { throw null; }
- public static string ViewGen_ErrorLog(object p0) { throw null; }
- public static string ViewGen_ErrorLog2(object p0) { throw null; }
- public static string Viewgen_ErrorPattern_ConditionMemberIsMapped(object p0) { throw null; }
- public static string Viewgen_ErrorPattern_DuplicateConditionValue(object p0) { throw null; }
- public static string Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember(object p0, object p1) { throw null; }
- public static string Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition(object p0, object p1) { throw null; }
- public static string Viewgen_ErrorPattern_TableMappedToMultipleES(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_Foreign_Key(object p0, object p1, object p2, object p3, object p4) { throw null; }
- public static string ViewGen_Foreign_Key_LowerBound_MustBeOne(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_Foreign_Key_Missing_Relationship_Mapping(object p0) { throw null; }
- public static string ViewGen_Foreign_Key_Missing_Table_Mapping(object p0, object p1) { throw null; }
- public static string ViewGen_Foreign_Key_Not_Guaranteed_InCSpace(object p0) { throw null; }
- public static string ViewGen_Foreign_Key_ParentTable_NotMappedToEnd(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string ViewGen_Foreign_Key_UpperBound_MustBeOne(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_HashOnMappingClosure_Not_Matching(object p0) { throw null; }
- public static string ViewGen_InvalidCondition(object p0) { throw null; }
- public static string ViewGen_KeyConstraint_Update_Violation_AssociationSet(object p0, object p1, object p2) { throw null; }
- public static string ViewGen_KeyConstraint_Update_Violation_EntitySet(object p0, object p1, object p2, object p3) { throw null; }
- public static string ViewGen_KeyConstraint_Violation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
- public static string ViewGen_Missing_Sets_Mapping(object p0) { throw null; }
- public static string ViewGen_Missing_Set_Mapping(object p0) { throw null; }
- public static string ViewGen_Missing_Type_Mapping(object p0) { throw null; }
- public static string Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct(object p0, object p1) { throw null; }
- public static string ViewGen_NegatedCellConstant(object p0) { throw null; }
- public static string ViewGen_NonKeyProjectedWithOverlappingPartitions(object p0) { throw null; }
- public static string ViewGen_NotNull_No_Projected_Slot(object p0) { throw null; }
- public static string ViewGen_No_Default_Value(object p0, object p1) { throw null; }
- public static string ViewGen_No_Default_Value_For_Configuration(object p0) { throw null; }
- public static string Viewgen_NullableMappingForNonNullableColumn(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_IsEqualTo(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_IsNonNullable(object p0) { throw null; }
- public static string ViewGen_OneOfConst_IsNotEqualTo(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_IsNotOneOf(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_IsOneOf(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_IsOneOfTypes(object p0) { throw null; }
- public static string ViewGen_OneOfConst_MustBeEqualTo(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_MustBeNonNullable(object p0) { throw null; }
- public static string ViewGen_OneOfConst_MustBeNull(object p0) { throw null; }
- public static string ViewGen_OneOfConst_MustBeOneOf(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_MustNotBeEqualTo(object p0, object p1) { throw null; }
- public static string ViewGen_OneOfConst_MustNotBeOneOf(object p0, object p1) { throw null; }
- public static string Viewgen_QV_RewritingNotFound(object p0) { throw null; }
- public static string Viewgen_RightSideNotDisjoint(object p0) { throw null; }
- public static string ViewGen_TableKey_Missing(object p0, object p1) { throw null; }
- }
-}
namespace System.Data.EntityClient
{
public sealed partial class EntityCommand : System.Data.Common.DbCommand
diff --git a/src/v4.7/System.Runtime.Caching.cs b/src/v4.7/System.Runtime.Caching.cs
index eddbea1..219ed47 100644
--- a/src/v4.7/System.Runtime.Caching.cs
+++ b/src/v4.7/System.Runtime.Caching.cs
@@ -158,6 +158,7 @@ namespace System.Runtime.Caching
public partial class MemoryCache : System.Runtime.Caching.ObjectCache, System.Collections.IEnumerable, System.IDisposable
{
public MemoryCache(string name, System.Collections.Specialized.NameValueCollection config=null) { }
+ public MemoryCache(string name, System.Collections.Specialized.NameValueCollection config, bool ignoreConfigSection) { }
public long CacheMemoryLimit { get { throw null; } }
public static System.Runtime.Caching.MemoryCache Default { get { throw null; } }
public override System.Runtime.Caching.DefaultCacheCapabilities DefaultCacheCapabilities { get { throw null; } }
@@ -176,7 +177,9 @@ namespace System.Runtime.Caching
public override System.Runtime.Caching.CacheItem GetCacheItem(string key, string regionName=null) { throw null; }
public override long GetCount(string regionName=null) { throw null; }
protected override System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>> GetEnumerator() { throw null; }
+ public long GetLastSize(string regionName=null) { throw null; }
public override System.Collections.Generic.IDictionary<string, object> GetValues(System.Collections.Generic.IEnumerable<string> keys, string regionName=null) { throw null; }
+ public object Remove(string key, System.Runtime.Caching.CacheEntryRemovedReason reason, string regionName=null) { throw null; }
public override object Remove(string key, string regionName=null) { throw null; }
public override void Set(System.Runtime.Caching.CacheItem item, System.Runtime.Caching.CacheItemPolicy policy) { }
public override void Set(string key, object value, System.DateTimeOffset absoluteExpiration, string regionName=null) { }
diff --git a/src/v4.7/System.Web.cs b/src/v4.7/System.Web.cs
index 4dbbe25..0f5028f 100644
--- a/src/v4.7/System.Web.cs
+++ b/src/v4.7/System.Web.cs
@@ -157,46 +157,6 @@ namespace System
public string Comment { get { throw null; } }
}
}
-namespace System.Data.Design
-{
- public sealed partial class TypedDataSetGenerator
- {
- internal TypedDataSetGenerator() { }
- [System.MonoTODOAttribute]
- public static System.Collections.Generic.ICollection<System.Reflection.Assembly> ReferencedAssemblies { get { throw null; } }
- public static string Generate(System.Data.DataSet dataSet, System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
- public static string Generate(string inputFileContent, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
- [System.MonoTODOAttribute]
- public static void Generate(string inputFileContent, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Collections.Hashtable customDBProviders) { }
- [System.MonoTODOAttribute]
- public static void Generate(string inputFileContent, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Collections.Hashtable customDBProviders, System.Data.Design.TypedDataSetGenerator.GenerateOption option) { }
- [System.MonoTODOAttribute]
- public static void Generate(string inputFileContent, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Data.Common.DbProviderFactory specifiedFactory) { }
- [System.MonoTODOAttribute]
- public static string Generate(string inputFileContent, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Data.Design.TypedDataSetGenerator.GenerateOption option) { throw null; }
- [System.MonoTODOAttribute]
- public static string GetProviderName(string inputFileContent) { throw null; }
- [System.MonoTODOAttribute]
- public static string GetProviderName(string inputFileContent, string tableName) { throw null; }
- [System.FlagsAttribute]
- public enum GenerateOption
- {
- HierarchicalUpdate = 1,
- LinqOverTypedDatasets = 2,
- None = 0,
- }
- }
-}
-namespace System.Resources
-{
- public partial class ResXResourceSet : System.Resources.ResourceSet
- {
- public ResXResourceSet(System.IO.Stream stream) { }
- public ResXResourceSet(string fileName) { }
- public override System.Type GetDefaultReader() { throw null; }
- public override System.Type GetDefaultWriter() { throw null; }
- }
-}
namespace System.Web
{
public enum ApplicationShutdownReason
@@ -2678,8 +2638,21 @@ namespace System.Web.Caching
protected internal void FinishInit() { }
public virtual string[] GetFileDependencies() { throw null; }
public virtual string GetUniqueID() { throw null; }
+ public void ItemRemoved() { }
+ public void KeepDependenciesAlive() { }
protected void NotifyDependencyChanged(object sender, System.EventArgs e) { }
+ public void SetCacheDependencyChanged(System.Action<object, System.EventArgs> dependencyChangedAction) { }
protected void SetUtcLastModified(System.DateTime utcLastModified) { }
+ public bool TakeOwnership() { throw null; }
+ }
+ public partial class CacheInsertOptions
+ {
+ public CacheInsertOptions() { }
+ public System.DateTime AbsoluteExpiration { get { throw null; } set { } }
+ public System.Web.Caching.CacheDependency Dependencies { get { throw null; } set { } }
+ public System.Web.Caching.CacheItemRemovedCallback OnRemovedCallback { get { throw null; } set { } }
+ public System.Web.Caching.CacheItemPriority Priority { get { throw null; } set { } }
+ public System.TimeSpan SlidingExpiration { get { throw null; } set { } }
}
public enum CacheItemPriority
{
@@ -2705,6 +2678,23 @@ namespace System.Web.Caching
DependencyChanged = 2,
Expired = 1,
}
+ public abstract partial class CacheStoreProvider : System.Configuration.Provider.ProviderBase, System.IDisposable
+ {
+ protected CacheStoreProvider() { }
+ public abstract long ItemCount { get; }
+ public abstract long SizeInBytes { get; }
+ public abstract object Add(string key, object item, System.Web.Caching.CacheInsertOptions options);
+ public abstract bool AddDependent(string key, System.Web.Caching.CacheDependency dependency, out System.DateTime utcLastUpdated);
+ public abstract void Dispose();
+ public abstract object Get(string key);
+ public abstract System.Collections.IDictionaryEnumerator GetEnumerator();
+ public abstract new void Initialize(string name, System.Collections.Specialized.NameValueCollection config);
+ public abstract void Insert(string key, object item, System.Web.Caching.CacheInsertOptions options);
+ public abstract object Remove(string key);
+ public abstract object Remove(string key, System.Web.Caching.CacheItemRemovedReason reason);
+ public abstract void RemoveDependent(string key, System.Web.Caching.CacheDependency dependency);
+ public abstract long Trim(int percent);
+ }
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
[System.SerializableAttribute]
public sealed partial class DatabaseNotEnabledForNotificationException : System.SystemException
@@ -2777,6 +2767,7 @@ namespace System.Web.Caching
public static partial class OutputCacheUtility
{
public static System.Web.Caching.CacheDependency CreateCacheDependency(System.Web.HttpResponse response) { throw null; }
+ public static void FlushKernelCache(string cacheKey) { }
public static System.Collections.ArrayList GetContentBuffers(System.Web.HttpResponse response) { throw null; }
public static System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Web.HttpCacheValidateHandler, object>> GetValidationCallbacks(System.Web.HttpResponse response) { throw null; }
public static void SetContentBuffers(System.Web.HttpResponse response, System.Collections.ArrayList buffers) { }
@@ -3546,6 +3537,9 @@ namespace System.Web.Configuration
public sealed partial class CacheSection : System.Configuration.ConfigurationSection
{
public CacheSection() { }
+ [System.Configuration.ConfigurationPropertyAttribute("defaultProvider", DefaultValue=null)]
+ [System.Configuration.StringValidatorAttribute(MinLength=1)]
+ public string DefaultProvider { get { throw null; } set { } }
[System.Configuration.ConfigurationPropertyAttribute("disableExpiration", DefaultValue="False")]
public bool DisableExpiration { get { throw null; } set { } }
[System.Configuration.ConfigurationPropertyAttribute("disableMemoryCollection", DefaultValue="False")]
@@ -3560,6 +3554,8 @@ namespace System.Web.Configuration
[System.Configuration.ConfigurationPropertyAttribute("privateBytesPollTime", DefaultValue="00:02:00")]
public System.TimeSpan PrivateBytesPollTime { get { throw null; } set { } }
protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
+ [System.Configuration.ConfigurationPropertyAttribute("providers")]
+ public System.Configuration.ProviderSettingsCollection Providers { get { throw null; } }
}
public sealed partial class ClientTarget : System.Configuration.ConfigurationElement
{
@@ -5795,6 +5791,11 @@ namespace System.Web.Hosting
public void ShutdownApplication(string appId) { }
public void StopObject(string appId, System.Type type) { }
}
+ public sealed partial class ApplicationMonitors
+ {
+ internal ApplicationMonitors() { }
+ public System.Web.Hosting.IApplicationMonitor MemoryMonitor { get { throw null; } set { } }
+ }
public sealed partial class AppManagerAppDomainFactory : System.Web.Hosting.IAppManagerAppDomainFactory
{
public AppManagerAppDomainFactory() { }
@@ -5803,6 +5804,17 @@ namespace System.Web.Hosting
public object Create(string appId, string appPath) { throw null; }
public void Stop() { }
}
+ public sealed partial class AspNetMemoryMonitor : System.IDisposable, System.IObservable<System.Web.Hosting.LowPhysicalMemoryInfo>, System.IObservable<System.Web.Hosting.RecycleLimitInfo>, System.Web.Hosting.IApplicationMonitor
+ {
+ internal AspNetMemoryMonitor() { }
+ public System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> DefaultLowPhysicalMemoryObserver { get { throw null; } set { } }
+ public System.IObserver<System.Web.Hosting.RecycleLimitInfo> DefaultRecycleLimitObserver { get { throw null; } set { } }
+ public void Dispose() { }
+ public void Start() { }
+ public void Stop() { }
+ public System.IDisposable Subscribe(System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> observer) { throw null; }
+ public System.IDisposable Subscribe(System.IObserver<System.Web.Hosting.RecycleLimitInfo> observer) { throw null; }
+ }
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Level=(System.Web.AspNetHostingPermissionLevel)(400))]
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(500))]
public sealed partial class HostingEnvironment : System.MarshalByRefObject
@@ -5810,6 +5822,7 @@ namespace System.Web.Hosting
public HostingEnvironment() { }
public static System.Web.Hosting.IApplicationHost ApplicationHost { get { throw null; } }
public static string ApplicationID { get { throw null; } }
+ public static System.Web.Hosting.ApplicationMonitors ApplicationMonitors { get { throw null; } }
public static string ApplicationPhysicalPath { get { throw null; } }
public static string ApplicationVirtualPath { get { throw null; } }
public static System.Web.Caching.Cache Cache { get { throw null; } }
@@ -5915,6 +5928,11 @@ namespace System.Web.Hosting
[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
void MessageReceived();
}
+ public partial interface IApplicationMonitor : System.IDisposable
+ {
+ void Start();
+ void Stop();
+ }
public partial interface IApplicationPreloadManager
{
void SetApplicationPreloadState([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string context, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string appId, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool enabled);
@@ -6046,6 +6064,20 @@ namespace System.Web.Hosting
{
System.Action Suspend();
}
+ public sealed partial class LowPhysicalMemoryInfo
+ {
+ public LowPhysicalMemoryInfo(int currentPercentUsed, int percentLimit) { }
+ public int CurrentPercentUsed { get { throw null; } }
+ public int PercentLimit { get { throw null; } }
+ public bool RequestGC { get { throw null; } set { } }
+ }
+ public partial class LowPhysicalMemoryObserver : System.IObserver<System.Web.Hosting.LowPhysicalMemoryInfo>
+ {
+ public LowPhysicalMemoryObserver() { }
+ public void OnCompleted() { }
+ public void OnError(System.Exception error) { }
+ public void OnNext(System.Web.Hosting.LowPhysicalMemoryInfo lowMemoryInfo) { }
+ }
public sealed partial class ProcessHost : System.MarshalByRefObject, System.Web.Hosting.IAdphManager, System.Web.Hosting.IApplicationPreloadManager, System.Web.Hosting.IPphManager, System.Web.Hosting.IProcessHost, System.Web.Hosting.IProcessHostIdleAndHealthCheck
{
internal ProcessHost() { }
@@ -6079,6 +6111,42 @@ namespace System.Web.Hosting
public abstract void StopListenerChannel(int listenerChannelId, bool immediate);
public abstract void StopProtocol(bool immediate);
}
+ public sealed partial class RecycleLimitInfo
+ {
+ public RecycleLimitInfo(long currentPrivateBytes, long recycleLimit, System.Web.Hosting.RecycleLimitNotificationFrequency recycleLimitNearFrequency) { }
+ public long CurrentPrivateBytes { get { throw null; } }
+ public long RecycleLimit { get { throw null; } }
+ public bool RequestGC { get { throw null; } set { } }
+ public System.Web.Hosting.RecycleLimitNotificationFrequency TrimFrequency { get { throw null; } }
+ }
+ public partial class RecycleLimitMonitor : System.MarshalByRefObject
+ {
+ internal RecycleLimitMonitor() { }
+ public void Dispose() { }
+ public override object InitializeLifetimeService() { throw null; }
+ public partial class RecycleLimitMonitorSingleton : System.MarshalByRefObject
+ {
+ internal RecycleLimitMonitorSingleton() { }
+ public void Dispose() { }
+ public static void EnsureCreated() { }
+ public override object InitializeLifetimeService() { throw null; }
+ public void RegisterProxyAndStart(System.Web.Hosting.RecycleLimitMonitor proxy, string applicationID) { }
+ public void UnregisterProxyAndStop(System.Web.Hosting.RecycleLimitMonitor proxy) { }
+ }
+ }
+ public enum RecycleLimitNotificationFrequency
+ {
+ High = 0,
+ Low = 2,
+ Medium = 1,
+ }
+ public partial class RecycleLimitObserver : System.IObserver<System.Web.Hosting.RecycleLimitInfo>
+ {
+ public RecycleLimitObserver() { }
+ public void OnCompleted() { }
+ public void OnError(System.Exception error) { }
+ public void OnNext(System.Web.Hosting.RecycleLimitInfo recycleLimitInfo) { }
+ }
[System.Runtime.InteropServices.ComVisibleAttribute(false)]
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
[System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
diff --git a/src/v4.7/System.Windows.Forms.cs b/src/v4.7/System.Windows.Forms.cs
index 8744506..bcfeb3d 100644
--- a/src/v4.7/System.Windows.Forms.cs
+++ b/src/v4.7/System.Windows.Forms.cs
@@ -2436,6 +2436,7 @@ namespace System.Windows.Forms
protected virtual System.Drawing.Size DefaultMinimumSize { get { throw null; } }
protected virtual System.Windows.Forms.Padding DefaultPadding { get { throw null; } }
protected virtual System.Drawing.Size DefaultSize { get { throw null; } }
+ public int DeviceDpi { get { throw null; } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
@@ -2627,6 +2628,8 @@ namespace System.Windows.Forms
public event System.EventHandler CursorChanged { add { } remove { } }
public event System.EventHandler DockChanged { add { } remove { } }
public event System.EventHandler DoubleClick { add { } remove { } }
+ public event System.EventHandler DpiChangedAfterParent { add { } remove { } }
+ public event System.EventHandler DpiChangedBeforeParent { add { } remove { } }
public event System.Windows.Forms.DragEventHandler DragDrop { add { } remove { } }
public event System.Windows.Forms.DragEventHandler DragEnter { add { } remove { } }
public event System.EventHandler DragLeave { add { } remove { } }
@@ -2762,6 +2765,7 @@ namespace System.Windows.Forms
[System.MonoTODOAttribute("Only implemented for Win32, others always return false")]
public static bool IsKeyLocked(System.Windows.Forms.Keys keyVal) { throw null; }
public static bool IsMnemonic(char charCode, string text) { throw null; }
+ public int LogicalToDeviceUnits(int value) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void NotifyInvalidate(System.Drawing.Rectangle invalidatedArea) { }
protected virtual void OnAutoSizeChanged(System.EventArgs e) { }
@@ -2798,6 +2802,10 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void OnDoubleClick(System.EventArgs e) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
+ protected virtual void OnDpiChangedAfterParent(System.EventArgs e) { }
+ [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
+ protected virtual void OnDpiChangedBeforeParent(System.EventArgs e) { }
+ [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void OnDragDrop(System.Windows.Forms.DragEventArgs drgevent) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void OnDragEnter(System.Windows.Forms.DragEventArgs drgevent) { }
@@ -2951,6 +2959,7 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected static bool ReflectMessage(System.IntPtr hWnd, ref System.Windows.Forms.Message m) { throw null; }
public virtual void Refresh() { }
+ protected virtual void RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
public virtual void ResetBackColor() { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
@@ -2990,6 +2999,7 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
[System.ObsoleteAttribute]
public void Scale(float dx, float dy) { }
+ public void ScaleBitmapLogicalToDevice(ref System.Drawing.Bitmap logicalBitmap) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
@@ -6767,6 +6777,15 @@ namespace System.Windows.Forms
public override void RemoveAt(int item) { }
}
}
+ public sealed partial class DpiChangedEventArgs : System.ComponentModel.CancelEventArgs
+ {
+ internal DpiChangedEventArgs() { }
+ public int DeviceDpiNew { get { throw null; } }
+ public int DeviceDpiOld { get { throw null; } }
+ public System.Drawing.Rectangle SuggestedRectangle { get { throw null; } }
+ public override string ToString() { throw null; }
+ }
+ public delegate void DpiChangedEventHandler(object sender, System.Windows.Forms.DpiChangedEventArgs e);
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public enum DragAction
{
@@ -7194,7 +7213,6 @@ namespace System.Windows.Forms
public bool AllowVectorFonts { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(true)]
public bool AllowVerticalFonts { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [Black]")]
public System.Drawing.Color Color { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(false)]
public bool FixedPitchOnly { get { throw null; } set { } }
@@ -7406,6 +7424,7 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
public event System.ComponentModel.CancelEventHandler Closing { add { } remove { } }
public event System.EventHandler Deactivate { add { } remove { } }
+ public event System.Windows.Forms.DpiChangedEventHandler DpiChanged { add { } remove { } }
public event System.Windows.Forms.FormClosedEventHandler FormClosed { add { } remove { } }
public event System.Windows.Forms.FormClosingEventHandler FormClosing { add { } remove { } }
[System.ComponentModel.BrowsableAttribute(true)]
@@ -7472,6 +7491,8 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void OnDeactivate(System.EventArgs e) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
+ protected virtual void OnDpiChanged(System.Windows.Forms.DpiChangedEventArgs e) { }
+ [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected override void OnEnabledChanged(System.EventArgs e) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected override void OnEnter(System.EventArgs e) { }
@@ -7482,6 +7503,8 @@ namespace System.Windows.Forms
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected virtual void OnFormClosing(System.Windows.Forms.FormClosingEventArgs e) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
+ protected virtual bool OnGetDpiScaledSize(int deviceDpiOld, int deviceDpiNew, ref System.Drawing.Size desiredSize) { throw null; }
+ [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected override void OnHandleCreated(System.EventArgs e) { }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
protected override void OnHandleDestroyed(System.EventArgs e) { }
@@ -9285,6 +9308,7 @@ namespace System.Windows.Forms
public override void Refresh() { }
protected override void RefreshItem(int index) { }
protected override void RefreshItems() { }
+ protected override void RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) { }
public override void ResetBackColor() { }
public override void ResetForeColor() { }
protected override void ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) { }
@@ -10879,6 +10903,7 @@ namespace System.Windows.Forms
public void RemoveAnnuallyBoldedDate(System.DateTime date) { }
public void RemoveBoldedDate(System.DateTime date) { }
public void RemoveMonthlyBoldedDate(System.DateTime date) { }
+ protected override void RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) { }
protected override void SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) { }
public void SetCalendarDimensions(int x, int y) { }
public void SetDate(System.DateTime date) { }
@@ -12144,17 +12169,14 @@ namespace System.Windows.Forms
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
public override System.Drawing.Color ForeColor { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [Control]")]
public System.Drawing.Color HelpBackColor { get { throw null; } set { } }
public System.Drawing.Color HelpBorderColor { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [ControlText]")]
public System.Drawing.Color HelpForeColor { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(true)]
[System.ComponentModel.LocalizableAttribute(true)]
public virtual bool HelpVisible { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(false)]
public bool LargeButtons { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [InactiveBorder]")]
public System.Drawing.Color LineColor { get { throw null; } set { } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
@@ -12197,10 +12219,8 @@ namespace System.Windows.Forms
protected System.Windows.Forms.ToolStripRenderer ToolStripRenderer { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(false)]
public bool UseCompatibleTextRendering { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [Window]")]
public System.Drawing.Color ViewBackColor { get { throw null; } set { } }
public System.Drawing.Color ViewBorderColor { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [WindowText]")]
public System.Drawing.Color ViewForeColor { get { throw null; } set { } }
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
@@ -14072,6 +14092,10 @@ namespace System.Windows.Forms
public static int VerticalScrollBarWidth { get { throw null; } }
public static System.Drawing.Rectangle VirtualScreen { get { throw null; } }
public static System.Drawing.Rectangle WorkingArea { get { throw null; } }
+ public static System.Drawing.Size GetBorderSizeForDpi(int dpi) { throw null; }
+ public static int GetHorizontalScrollBarHeightForDpi(int dpi) { throw null; }
+ public static System.Drawing.Font GetMenuFontForDpi(int dpi) { throw null; }
+ public static int GetVerticalScrollBarWidthForDpi(int dpi) { throw null; }
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public enum SystemParameter
@@ -17581,10 +17605,8 @@ namespace System.Windows.Forms
public int AutomaticDelay { get { throw null; } set { } }
[System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
public int AutoPopDelay { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [Info]")]
public System.Drawing.Color BackColor { get { throw null; } set { } }
protected virtual System.Windows.Forms.CreateParams CreateParams { get { throw null; } }
- [System.ComponentModel.DefaultValueAttribute("Color [InfoText]")]
public System.Drawing.Color ForeColor { get { throw null; } set { } }
[System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
public int InitialDelay { get { throw null; } set { } }
@@ -18047,7 +18069,6 @@ namespace System.Windows.Forms
public int ItemHeight { get { throw null; } set { } }
[System.ComponentModel.DefaultValueAttribute(false)]
public bool LabelEdit { get { throw null; } set { } }
- [System.ComponentModel.DefaultValueAttribute("Color [Black]")]
public System.Drawing.Color LineColor { get { throw null; } set { } }
[System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
[System.ComponentModel.LocalizableAttribute(true)]
@@ -18382,6 +18403,7 @@ namespace System.Windows.Forms
protected virtual void OnTextBoxLostFocus(object source, System.EventArgs e) { }
protected virtual void OnTextBoxResize(object source, System.EventArgs e) { }
protected virtual void OnTextBoxTextChanged(object source, System.EventArgs e) { }
+ protected override void RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) { }
public void Select(int start, int length) { }
public abstract void UpButton();
protected abstract void UpdateEditText();
diff --git a/src/v4.7/System.Xaml.cs b/src/v4.7/System.Xaml.cs
index 2d3bf90..1de0694 100644
--- a/src/v4.7/System.Xaml.cs
+++ b/src/v4.7/System.Xaml.cs
@@ -185,6 +185,12 @@ namespace System.Windows.Markup
protected MarkupExtension() { }
public abstract object ProvideValue(System.IServiceProvider serviceProvider);
}
+ public sealed partial class MarkupExtensionBracketCharactersAttribute : System.Attribute
+ {
+ public MarkupExtensionBracketCharactersAttribute(char openingBracket, char closingBracket) { }
+ public char ClosingBracket { get { throw null; } }
+ public char OpeningBracket { get { throw null; } }
+ }
[System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)]
public sealed partial class MarkupExtensionReturnTypeAttribute : System.Attribute
{
@@ -682,6 +688,7 @@ namespace System.Xaml
public bool IsUnknown { get { throw null; } }
public bool IsWriteOnly { get { throw null; } }
public bool IsWritePublic { get { throw null; } }
+ public System.Collections.Generic.IReadOnlyDictionary<char, char> MarkupExtensionBracketCharacters { get { throw null; } }
public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
public string PreferredXamlNamespace { get { throw null; } }
public System.ComponentModel.DesignerSerializationVisibility SerializationVisibility { get { throw null; } }
@@ -705,6 +712,7 @@ namespace System.Xaml
protected virtual bool LookupIsUnknown() { throw null; }
protected virtual bool LookupIsWriteOnly() { throw null; }
protected virtual bool LookupIsWritePublic() { throw null; }
+ protected virtual System.Collections.Generic.IReadOnlyDictionary<char, char> LookupMarkupExtensionBracketCharacters() { throw null; }
protected virtual System.Xaml.XamlType LookupTargetType() { throw null; }
protected virtual System.Xaml.XamlType LookupType() { throw null; }
protected virtual System.Xaml.Schema.XamlValueConverter<System.ComponentModel.TypeConverter> LookupTypeConverter() { throw null; }
diff --git a/src/v4.7/System.Xml.cs b/src/v4.7/System.Xml.cs
index 5107cfb..5089ba7 100644
--- a/src/v4.7/System.Xml.cs
+++ b/src/v4.7/System.Xml.cs
@@ -3849,649 +3849,3 @@ namespace System.Xml.Xsl
public static System.Xml.Xsl.XsltSettings TrustedXslt { get { throw null; } }
}
}
-namespace System.Xml.Xsl.Runtime
-{
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct AncestorDocOrderIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct AncestorIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct AttributeContentIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct AttributeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct ContentIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct ContentMergeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DecimalAggregator
- {
- public decimal AverageResult { get { throw null; } }
- public bool IsEmpty { get { throw null; } }
- public decimal MaximumResult { get { throw null; } }
- public decimal MinimumResult { get { throw null; } }
- public decimal SumResult { get { throw null; } }
- public void Average(decimal value) { }
- public void Create() { }
- public void Maximum(decimal value) { }
- public void Minimum(decimal value) { }
- public void Sum(decimal value) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DescendantIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DescendantMergeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
- public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DifferenceIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
- public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DodSequenceMerge
- {
- public void AddSequence(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> sequence) { }
- public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
- public System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> MergeSequences() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct DoubleAggregator
- {
- public double AverageResult { get { throw null; } }
- public bool IsEmpty { get { throw null; } }
- public double MaximumResult { get { throw null; } }
- public double MinimumResult { get { throw null; } }
- public double SumResult { get { throw null; } }
- public void Average(double value) { }
- public void Create() { }
- public void Maximum(double value) { }
- public void Minimum(double value) { }
- public void Sum(double value) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct ElementContentIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, string localName, string ns) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct FollowingSiblingIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct FollowingSiblingMergeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator navigator) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct IdIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, string value) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct Int32Aggregator
- {
- public int AverageResult { get { throw null; } }
- public bool IsEmpty { get { throw null; } }
- public int MaximumResult { get { throw null; } }
- public int MinimumResult { get { throw null; } }
- public int SumResult { get { throw null; } }
- public void Average(int value) { }
- public void Create() { }
- public void Maximum(int value) { }
- public void Minimum(int value) { }
- public void Sum(int value) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct Int64Aggregator
- {
- public long AverageResult { get { throw null; } }
- public bool IsEmpty { get { throw null; } }
- public long MaximumResult { get { throw null; } }
- public long MinimumResult { get { throw null; } }
- public long SumResult { get { throw null; } }
- public void Average(long value) { }
- public void Create() { }
- public void Maximum(long value) { }
- public void Minimum(long value) { }
- public void Sum(long value) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct IntersectIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
- public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public enum IteratorResult
- {
- HaveCurrentNode = 2,
- NeedInputNode = 1,
- NoMoreNodes = 0,
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct NamespaceIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct NodeKindContentIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.XPath.XPathNodeType nodeType) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct NodeRangeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator start, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, System.Xml.XPath.XPathNavigator end) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct ParentIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct PrecedingIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct PrecedingSiblingDocOrderIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct PrecedingSiblingIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public enum SetIteratorResult
- {
- HaveCurrentNode = 4,
- InitRightIterator = 1,
- NeedLeftNode = 2,
- NeedRightNode = 3,
- NoMoreNodes = 0,
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct StringConcat
- {
- public string Delimiter { get { throw null; } set { } }
- public void Clear() { }
- public void Concat(string value) { }
- public string GetResult() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct UnionIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
- public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlCollation
- {
- internal XmlCollation() { }
- public override bool Equals(object obj) { throw null; }
- public override int GetHashCode() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlILIndex
- {
- internal XmlILIndex() { }
- public void Add(string key, System.Xml.XPath.XPathNavigator navigator) { }
- public System.Xml.Xsl.Runtime.XmlQueryNodeSequence Lookup(string key) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public static partial class XmlILStorageConverter
- {
- public static System.Xml.Schema.XmlAtomicValue BooleanToAtomicValue(bool value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue BytesToAtomicValue(byte[] value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue DateTimeToAtomicValue(System.DateTime value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue DecimalToAtomicValue(decimal value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue DoubleToAtomicValue(double value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue Int32ToAtomicValue(int value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue Int64ToAtomicValue(long value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ItemsToNavigators(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static System.Collections.Generic.IList<System.Xml.XPath.XPathItem> NavigatorsToItems(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> listNavigators) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue SingleToAtomicValue(float value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue StringToAtomicValue(string value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue TimeSpanToAtomicValue(System.TimeSpan value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- public static System.Xml.Schema.XmlAtomicValue XmlQualifiedNameToAtomicValue(System.Xml.XmlQualifiedName value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public abstract partial class XmlNavigatorFilter
- {
- protected XmlNavigatorFilter() { }
- public abstract bool IsFiltered(System.Xml.XPath.XPathNavigator navigator);
- public abstract bool MoveToContent(System.Xml.XPath.XPathNavigator navigator);
- public abstract bool MoveToFollowing(System.Xml.XPath.XPathNavigator navigator, System.Xml.XPath.XPathNavigator navigatorEnd);
- public abstract bool MoveToFollowingSibling(System.Xml.XPath.XPathNavigator navigator);
- public abstract bool MoveToNextContent(System.Xml.XPath.XPathNavigator navigator);
- public abstract bool MoveToPreviousSibling(System.Xml.XPath.XPathNavigator navigator);
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlQueryContext
- {
- internal XmlQueryContext() { }
- public System.Xml.XPath.XPathNavigator DefaultDataSource { get { throw null; } }
- public System.Xml.XmlNameTable DefaultNameTable { get { throw null; } }
- public System.Xml.XmlNameTable QueryNameTable { get { throw null; } }
- public System.Xml.XPath.XPathNavigator GetDataSource(string uriRelative, string uriBase) { throw null; }
- public object GetLateBoundObject(string namespaceUri) { throw null; }
- public object GetParameter(string localName, string namespaceUri) { throw null; }
- public System.Collections.Generic.IList<System.Xml.XPath.XPathItem> InvokeXsltLateBoundFunction(string name, string namespaceUri, System.Collections.Generic.IList<System.Xml.XPath.XPathItem>[] args) { throw null; }
- public bool LateBoundFunctionExists(string name, string namespaceUri) { throw null; }
- public void OnXsltMessageEncountered(string message) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlQueryItemSequence : System.Xml.Xsl.Runtime.XmlQuerySequence<System.Xml.XPath.XPathItem>
- {
- public static readonly new System.Xml.Xsl.Runtime.XmlQueryItemSequence Empty;
- public XmlQueryItemSequence() { }
- public XmlQueryItemSequence(int capacity) { }
- public XmlQueryItemSequence(System.Xml.XPath.XPathItem item) { }
- public void AddClone(System.Xml.XPath.XPathItem item) { }
- public static System.Xml.Xsl.Runtime.XmlQueryItemSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq) { throw null; }
- public static System.Xml.Xsl.Runtime.XmlQueryItemSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq, System.Xml.XPath.XPathItem item) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlQueryNodeSequence : System.Xml.Xsl.Runtime.XmlQuerySequence<System.Xml.XPath.XPathNavigator>, System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>, System.Collections.Generic.IEnumerable<System.Xml.XPath.XPathItem>, System.Collections.Generic.IList<System.Xml.XPath.XPathItem>, System.Collections.IEnumerable
- {
- public static readonly new System.Xml.Xsl.Runtime.XmlQueryNodeSequence Empty;
- public XmlQueryNodeSequence() { }
- public XmlQueryNodeSequence(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> list) { }
- public XmlQueryNodeSequence(int capacity) { }
- public XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator navigator) { }
- public XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator[] array, int size) { }
- public bool IsDocOrderDistinct { get { throw null; } set { } }
- bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.IsReadOnly { get { throw null; } }
- System.Xml.XPath.XPathItem System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.this[int index] { get { throw null; } set { } }
- public void AddClone(System.Xml.XPath.XPathNavigator navigator) { }
- public static System.Xml.Xsl.Runtime.XmlQueryNodeSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq) { throw null; }
- public static System.Xml.Xsl.Runtime.XmlQueryNodeSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq, System.Xml.XPath.XPathNavigator navigator) { throw null; }
- public System.Xml.Xsl.Runtime.XmlQueryNodeSequence DocOrderDistinct(System.Collections.Generic.IComparer<System.Xml.XPath.XPathNavigator> comparer) { throw null; }
- protected override void OnItemsChanged() { }
- void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Add(System.Xml.XPath.XPathItem value) { }
- void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Clear() { }
- bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Contains(System.Xml.XPath.XPathItem value) { throw null; }
- void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.CopyTo(System.Xml.XPath.XPathItem[] array, int index) { }
- bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Remove(System.Xml.XPath.XPathItem value) { throw null; }
- System.Collections.Generic.IEnumerator<System.Xml.XPath.XPathItem> System.Collections.Generic.IEnumerable<System.Xml.XPath.XPathItem>.GetEnumerator() { throw null; }
- int System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.IndexOf(System.Xml.XPath.XPathItem value) { throw null; }
- void System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.Insert(int index, System.Xml.XPath.XPathItem value) { }
- void System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.RemoveAt(int index) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlQueryOutput : System.Xml.XmlWriter
- {
- internal XmlQueryOutput() { }
- public override System.Xml.WriteState WriteState { get { throw null; } }
- public override string XmlLang { get { throw null; } }
- public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
- public override void Close() { }
- public void EndCopy(System.Xml.XPath.XPathNavigator navigator) { }
- public void EndTree() { }
- public override void Flush() { }
- public override string LookupPrefix(string ns) { throw null; }
- public bool StartCopy(System.Xml.XPath.XPathNavigator navigator) { throw null; }
- public void StartElementContentUnchecked() { }
- public void StartTree(System.Xml.XPath.XPathNodeType rootType) { }
- public override void WriteBase64(byte[] buffer, int index, int count) { }
- public override void WriteCData(string text) { }
- public override void WriteCharEntity(char ch) { }
- public override void WriteChars(char[] buffer, int index, int count) { }
- public override void WriteComment(string text) { }
- public void WriteCommentString(string text) { }
- public override void WriteDocType(string name, string pubid, string sysid, string subset) { }
- public override void WriteEndAttribute() { }
- public void WriteEndAttributeUnchecked() { }
- public void WriteEndComment() { }
- public override void WriteEndDocument() { }
- public override void WriteEndElement() { }
- public void WriteEndElementUnchecked(string localName) { }
- public void WriteEndElementUnchecked(string prefix, string localName, string ns) { }
- public void WriteEndNamespace() { }
- public void WriteEndProcessingInstruction() { }
- public void WriteEndRoot() { }
- public override void WriteEntityRef(string name) { }
- public override void WriteFullEndElement() { }
- public void WriteItem(System.Xml.XPath.XPathItem item) { }
- public void WriteNamespaceDeclaration(string prefix, string ns) { }
- public void WriteNamespaceDeclarationUnchecked(string prefix, string ns) { }
- public void WriteNamespaceString(string text) { }
- public override void WriteProcessingInstruction(string target, string text) { }
- public void WriteProcessingInstructionString(string text) { }
- public override void WriteRaw(char[] buffer, int index, int count) { }
- public override void WriteRaw(string data) { }
- public void WriteRawUnchecked(string text) { }
- public override void WriteStartAttribute(string prefix, string localName, string ns) { }
- public void WriteStartAttributeComputed(string tagName, int prefixMappingsIndex) { }
- public void WriteStartAttributeComputed(string tagName, string ns) { }
- public void WriteStartAttributeComputed(System.Xml.XmlQualifiedName name) { }
- public void WriteStartAttributeComputed(System.Xml.XPath.XPathNavigator navigator) { }
- public void WriteStartAttributeLocalName(string localName) { }
- public void WriteStartAttributeUnchecked(string localName) { }
- public void WriteStartAttributeUnchecked(string prefix, string localName, string ns) { }
- public void WriteStartComment() { }
- public override void WriteStartDocument() { }
- public override void WriteStartDocument(bool standalone) { }
- public override void WriteStartElement(string prefix, string localName, string ns) { }
- public void WriteStartElementComputed(string tagName, int prefixMappingsIndex) { }
- public void WriteStartElementComputed(string tagName, string ns) { }
- public void WriteStartElementComputed(System.Xml.XmlQualifiedName name) { }
- public void WriteStartElementComputed(System.Xml.XPath.XPathNavigator navigator) { }
- public void WriteStartElementLocalName(string localName) { }
- public void WriteStartElementUnchecked(string localName) { }
- public void WriteStartElementUnchecked(string prefix, string localName, string ns) { }
- public void WriteStartNamespace(string prefix) { }
- public void WriteStartProcessingInstruction(string target) { }
- public void WriteStartRoot() { }
- public override void WriteString(string text) { }
- public void WriteStringUnchecked(string text) { }
- public override void WriteSurrogateCharEntity(char lowChar, char highChar) { }
- public override void WriteWhitespace(string ws) { }
- public void XsltCopyOf(System.Xml.XPath.XPathNavigator navigator) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XmlQueryRuntime
- {
- internal XmlQueryRuntime() { }
- public System.Xml.Xsl.Runtime.XmlQueryContext ExternalContext { get { throw null; } }
- public System.Xml.XmlNameTable NameTable { get { throw null; } }
- public System.Xml.Xsl.Runtime.XmlQueryOutput Output { get { throw null; } }
- public System.Xml.Xsl.Runtime.XsltLibrary XsltFunctions { get { throw null; } }
- public void AddNewIndex(System.Xml.XPath.XPathNavigator context, int indexId, System.Xml.Xsl.Runtime.XmlILIndex index) { }
- public object ChangeTypeXsltArgument(int indexType, object value, System.Type destinationType) { throw null; }
- public object ChangeTypeXsltResult(int indexType, object value) { throw null; }
- public int ComparePosition(System.Xml.XPath.XPathNavigator navigatorThis, System.Xml.XPath.XPathNavigator navigatorThat) { throw null; }
- public System.Xml.Xsl.Runtime.XmlCollation CreateCollation(string collation) { throw null; }
- public string[] DebugGetGlobalNames() { throw null; }
- public System.Collections.IList DebugGetGlobalValue(string name) { throw null; }
- public object DebugGetXsltValue(System.Collections.IList seq) { throw null; }
- public void DebugSetGlobalValue(string name, object value) { }
- public System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> DocOrderDistinct(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> seq) { throw null; }
- public bool EarlyBoundFunctionExists(string name, string namespaceUri) { throw null; }
- public System.Xml.XPath.XPathNavigator EndRtfConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); throw null; }
- public System.Collections.Generic.IList<System.Xml.XPath.XPathItem> EndSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); throw null; }
- public bool FindIndex(System.Xml.XPath.XPathNavigator context, int indexId, out System.Xml.Xsl.Runtime.XmlILIndex index) { index = default(System.Xml.Xsl.Runtime.XmlILIndex); throw null; }
- public string GenerateId(System.Xml.XPath.XPathNavigator navigator) { throw null; }
- public string GetAtomizedName(int index) { throw null; }
- public System.Xml.Xsl.Runtime.XmlCollation GetCollation(int index) { throw null; }
- public object GetEarlyBoundObject(int index) { throw null; }
- public object GetGlobalValue(int index) { throw null; }
- public System.Xml.Xsl.Runtime.XmlNavigatorFilter GetNameFilter(int index) { throw null; }
- public System.Xml.Xsl.Runtime.XmlNavigatorFilter GetTypeFilter(System.Xml.XPath.XPathNodeType nodeType) { throw null; }
- public bool IsGlobalComputed(int index) { throw null; }
- public bool IsQNameEqual(System.Xml.XPath.XPathNavigator navigator, int indexLocalName, int indexNamespaceUri) { throw null; }
- public bool IsQNameEqual(System.Xml.XPath.XPathNavigator n1, System.Xml.XPath.XPathNavigator n2) { throw null; }
- public bool MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, int indexType) { throw null; }
- public bool MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, System.Xml.Schema.XmlTypeCode code) { throw null; }
- public bool MatchesXmlType(System.Xml.XPath.XPathItem item, int indexType) { throw null; }
- public bool MatchesXmlType(System.Xml.XPath.XPathItem item, System.Xml.Schema.XmlTypeCode code) { throw null; }
- public static int OnCurrentNodeChanged(System.Xml.XPath.XPathNavigator currentNode) { throw null; }
- public System.Xml.XmlQualifiedName ParseTagName(string tagName, int indexPrefixMappings) { throw null; }
- public System.Xml.XmlQualifiedName ParseTagName(string tagName, string ns) { throw null; }
- public void SendMessage(string message) { }
- public void SetGlobalValue(int index, object value) { }
- public void StartRtfConstruction(string baseUri, out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); }
- public void StartSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); }
- public System.Xml.XPath.XPathNavigator TextRtfConstruction(string text, string baseUri) { throw null; }
- public void ThrowException(string text) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public partial class XmlQuerySequence<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
- {
- public static readonly System.Xml.Xsl.Runtime.XmlQuerySequence<T> Empty;
- public XmlQuerySequence() { }
- public XmlQuerySequence(int capacity) { }
- public XmlQuerySequence(T value) { }
- public XmlQuerySequence(T[] array, int size) { }
- public int Count { get { throw null; } }
- public T this[int index] { get { throw null; } set { } }
- bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
- bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
- object System.Collections.ICollection.SyncRoot { get { throw null; } }
- bool System.Collections.IList.IsFixedSize { get { throw null; } }
- bool System.Collections.IList.IsReadOnly { get { throw null; } }
- object System.Collections.IList.this[int index] { get { throw null; } set { } }
- public void Add(T value) { }
- public void Clear() { }
- public bool Contains(T value) { throw null; }
- public void CopyTo(T[] array, int index) { }
- public static System.Xml.Xsl.Runtime.XmlQuerySequence<T> CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq) { throw null; }
- public static System.Xml.Xsl.Runtime.XmlQuerySequence<T> CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq, T item) { throw null; }
- public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
- public int IndexOf(T value) { throw null; }
- protected virtual void OnItemsChanged() { }
- public void SortByKeys(System.Array keys) { }
- void System.Collections.Generic.ICollection<T>.Add(T value) { }
- void System.Collections.Generic.ICollection<T>.Clear() { }
- bool System.Collections.Generic.ICollection<T>.Remove(T value) { throw null; }
- void System.Collections.Generic.IList<T>.Insert(int index, T value) { }
- void System.Collections.Generic.IList<T>.RemoveAt(int index) { }
- void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
- System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
- int System.Collections.IList.Add(object value) { throw null; }
- void System.Collections.IList.Clear() { }
- bool System.Collections.IList.Contains(object value) { throw null; }
- int System.Collections.IList.IndexOf(object value) { throw null; }
- void System.Collections.IList.Insert(int index, object value) { }
- void System.Collections.IList.Remove(object value) { }
- void System.Collections.IList.RemoveAt(int index) { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XmlSortKeyAccumulator
- {
- public System.Array Keys { get { throw null; } }
- public void AddDateTimeSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, System.DateTime value) { }
- public void AddDecimalSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, decimal value) { }
- public void AddDoubleSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, double value) { }
- public void AddEmptySortKey(System.Xml.Xsl.Runtime.XmlCollation collation) { }
- public void AddIntegerSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, long value) { }
- public void AddIntSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, int value) { }
- public void AddStringSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, string value) { }
- public void Create() { }
- public void FinishSortKeys() { }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XPathFollowingIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XPathFollowingMergeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XPathPrecedingDocOrderIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XPathPrecedingIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public bool MoveNext() { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct XPathPrecedingMergeIterator
- {
- public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
- public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
- public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public static partial class XsltConvert
- {
- public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> EnsureNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static bool ToBoolean(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static bool ToBoolean(System.Xml.XPath.XPathItem item) { throw null; }
- public static System.DateTime ToDateTime(string value) { throw null; }
- public static decimal ToDecimal(double value) { throw null; }
- public static double ToDouble(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static double ToDouble(decimal value) { throw null; }
- public static double ToDouble(int value) { throw null; }
- public static double ToDouble(long value) { throw null; }
- public static double ToDouble(string value) { throw null; }
- public static double ToDouble(System.Xml.XPath.XPathItem item) { throw null; }
- public static int ToInt(double value) { throw null; }
- public static long ToLong(double value) { throw null; }
- public static System.Xml.XPath.XPathNavigator ToNode(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static System.Xml.XPath.XPathNavigator ToNode(System.Xml.XPath.XPathItem item) { throw null; }
- public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ToNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ToNodeSet(System.Xml.XPath.XPathItem item) { throw null; }
- public static string ToString(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
- public static string ToString(System.DateTime value) { throw null; }
- public static string ToString(double value) { throw null; }
- public static string ToString(System.Xml.XPath.XPathItem item) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public static partial class XsltFunctions
- {
- public static string BaseUri(System.Xml.XPath.XPathNavigator navigator) { throw null; }
- public static bool Contains(string s1, string s2) { throw null; }
- public static string EXslObjectType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value) { throw null; }
- public static bool Lang(string value, System.Xml.XPath.XPathNavigator context) { throw null; }
- public static string MSFormatDateTime(string dateTime, string format, string lang, bool isDate) { throw null; }
- public static string MSLocalName(string name) { throw null; }
- public static string MSNamespaceUri(string name, System.Xml.XPath.XPathNavigator currentNode) { throw null; }
- public static double MSNumber(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value) { throw null; }
- public static double MSStringCompare(string s1, string s2, string lang, string options) { throw null; }
- public static string MSUtc(string dateTime) { throw null; }
- public static string NormalizeSpace(string value) { throw null; }
- public static string OuterXml(System.Xml.XPath.XPathNavigator navigator) { throw null; }
- public static double Round(double value) { throw null; }
- public static bool StartsWith(string s1, string s2) { throw null; }
- public static string Substring(string value, double startIndex) { throw null; }
- public static string Substring(string value, double startIndex, double length) { throw null; }
- public static string SubstringAfter(string s1, string s2) { throw null; }
- public static string SubstringBefore(string s1, string s2) { throw null; }
- public static System.Xml.XPath.XPathItem SystemProperty(System.Xml.XmlQualifiedName name) { throw null; }
- public static string Translate(string arg, string mapString, string transString) { throw null; }
- }
- [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
- public sealed partial class XsltLibrary
- {
- internal XsltLibrary() { }
- public int CheckScriptNamespace(string nsUri) { throw null; }
- public bool ElementAvailable(System.Xml.XmlQualifiedName name) { throw null; }
- public bool EqualityOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right) { throw null; }
- public string FormatMessage(string res, System.Collections.Generic.IList<string> args) { throw null; }
- public string FormatNumberDynamic(double value, string formatPicture, System.Xml.XmlQualifiedName decimalFormatName, string errorMessageName) { throw null; }
- public string FormatNumberStatic(double value, double decimalFormatterIndex) { throw null; }
- public bool FunctionAvailable(System.Xml.XmlQualifiedName name) { throw null; }
- public bool IsSameNodeSort(System.Xml.XPath.XPathNavigator nav1, System.Xml.XPath.XPathNavigator nav2) { throw null; }
- public int LangToLcid(string lang, bool forwardCompatibility) { throw null; }
- public string NumberFormat(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value, string formatString, double lang, string letterValue, string groupingSeparator, double groupingSize) { throw null; }
- public int RegisterDecimalFormat(System.Xml.XmlQualifiedName name, string infinitySymbol, string nanSymbol, string characters) { throw null; }
- public double RegisterDecimalFormatter(string formatPicture, string infinitySymbol, string nanSymbol, string characters) { throw null; }
- public bool RelationalOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right) { throw null; }
- }
-}
diff --git a/src/v4.7/System.cs b/src/v4.7/System.cs
index 49f7036..f248bf0 100644
--- a/src/v4.7/System.cs
+++ b/src/v4.7/System.cs
@@ -8923,6 +8923,7 @@ namespace System.Net
public enum SecurityProtocolType
{
Ssl3 = 48,
+ SystemDefault = 0,
Tls = 192,
Tls11 = 768,
Tls12 = 3072,
@@ -11185,16 +11186,22 @@ namespace System.Net.Security
public System.Net.TransportContext TransportContext { get { throw null; } }
public override int WriteTimeout { get { throw null; } set { } }
public virtual void AuthenticateAsClient(string targetHost) { }
+ public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation) { }
public virtual void AuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost) { throw null; }
+ public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation) { throw null; }
public virtual System.Threading.Tasks.Task AuthenticateAsClientAsync(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { }
+ public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation) { }
public virtual void AuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { }
public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate) { throw null; }
+ public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation) { throw null; }
public virtual System.Threading.Tasks.Task AuthenticateAsServerAsync(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation) { throw null; }
public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
+ public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
public virtual System.IAsyncResult BeginAuthenticateAsClient(string targetHost, System.Security.Cryptography.X509Certificates.X509CertificateCollection clientCertificates, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
+ public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
public virtual System.IAsyncResult BeginAuthenticateAsServer(System.Security.Cryptography.X509Certificates.X509Certificate serverCertificate, bool clientCertificateRequired, System.Security.Authentication.SslProtocols enabledSslProtocols, bool checkCertificateRevocation, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback asyncCallback, object asyncState) { throw null; }
@@ -11207,6 +11214,7 @@ namespace System.Net.Security
public override int Read(byte[] buffer, int offset, int count) { throw null; }
public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
public override void SetLength(long value) { }
+ public virtual System.Threading.Tasks.Task ShutdownAsync() { throw null; }
public void Write(byte[] buffer) { }
public override void Write(byte[] buffer, int offset, int count) { }
}
@@ -12374,6 +12382,9 @@ namespace System.Security.Authentication
Md5 = 32771,
None = 0,
Sha1 = 32772,
+ Sha256 = 32780,
+ Sha384 = 32781,
+ Sha512 = 32782,
}
[System.SerializableAttribute]
public partial class InvalidCredentialException : System.Security.Authentication.AuthenticationException
@@ -13196,6 +13207,7 @@ namespace System.Text.RegularExpressions
{
internal Group() { }
public System.Text.RegularExpressions.CaptureCollection Captures { get { throw null; } }
+ public string Name { get { throw null; } }
public bool Success { get { throw null; } }
public static System.Text.RegularExpressions.Group Synchronized(System.Text.RegularExpressions.Group inner) { throw null; }
}
diff --git a/src/v4.7/mscorlib.cs b/src/v4.7/mscorlib.cs
index db94af8..27c687b 100644
--- a/src/v4.7/mscorlib.cs
+++ b/src/v4.7/mscorlib.cs
@@ -371,6 +371,8 @@ namespace System
public static partial class AppContext
{
public static string BaseDirectory { get { throw null; } }
+ public static string TargetFrameworkName { get { throw null; } }
+ public static object GetData(string name) { throw null; }
public static void SetSwitch(string switchName, bool isEnabled) { }
public static bool TryGetSwitch(string switchName, out bool isEnabled) { isEnabled = default(bool); throw null; }
}
@@ -4608,6 +4610,72 @@ namespace System
public static System.Tuple<T1, T2, T3, T4, T5, T6, T7> Create<T1, T2, T3, T4, T5, T6, T7>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null; }
public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8>> Create<T1, T2, T3, T4, T5, T6, T7, T8>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8) { throw null; }
}
+ public static partial class TupleExtensions
+ {
+ public static void Deconstruct<T1>(this System.Tuple<T1> value, out T1 item1) { item1 = default(T1); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); item17 = default(T17); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); item17 = default(T17); item18 = default(T18); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); item17 = default(T17); item18 = default(T18); item19 = default(T19); }
+ public static void Deconstruct<T1, T2>(this System.Tuple<T1, T2> value, out T1 item1, out T2 item2) { item1 = default(T1); item2 = default(T2); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19, out T20 item20) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); item17 = default(T17); item18 = default(T18); item19 = default(T19); item20 = default(T20); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20, T21>>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19, out T20 item20, out T21 item21) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); item10 = default(T10); item11 = default(T11); item12 = default(T12); item13 = default(T13); item14 = default(T14); item15 = default(T15); item16 = default(T16); item17 = default(T17); item18 = default(T18); item19 = default(T19); item20 = default(T20); item21 = default(T21); }
+ public static void Deconstruct<T1, T2, T3>(this System.Tuple<T1, T2, T3> value, out T1 item1, out T2 item2, out T3 item3) { item1 = default(T1); item2 = default(T2); item3 = default(T3); }
+ public static void Deconstruct<T1, T2, T3, T4>(this System.Tuple<T1, T2, T3, T4> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); }
+ public static void Deconstruct<T1, T2, T3, T4, T5>(this System.Tuple<T1, T2, T3, T4, T5> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6>(this System.Tuple<T1, T2, T3, T4, T5, T6> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); }
+ public static void Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9) { item1 = default(T1); item2 = default(T2); item3 = default(T3); item4 = default(T4); item5 = default(T5); item6 = default(T6); item7 = default(T7); item8 = default(T8); item9 = default(T9); }
+ public static System.Tuple<T1> ToTuple<T1>(this System.ValueTuple<T1> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19>>> value) { throw null; }
+ public static System.Tuple<T1, T2> ToTuple<T1, T2>(this System.ValueTuple<T1, T2> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19, T20>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20, T21>>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19, T20, T21>>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3> ToTuple<T1, T2, T3>(this System.ValueTuple<T1, T2, T3> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4> ToTuple<T1, T2, T3, T4>(this System.ValueTuple<T1, T2, T3, T4> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5> ToTuple<T1, T2, T3, T4, T5>(this System.ValueTuple<T1, T2, T3, T4, T5> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6> ToTuple<T1, T2, T3, T4, T5, T6>(this System.ValueTuple<T1, T2, T3, T4, T5, T6> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7> ToTuple<T1, T2, T3, T4, T5, T6, T7>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8>> value) { throw null; }
+ public static System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9>> ToTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>(this System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9>> value) { throw null; }
+ public static System.ValueTuple<T1> ToValueTuple<T1>(this System.Tuple<T1> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2> ToValueTuple<T1, T2>(this System.Tuple<T1, T2> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19, T20>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9, T10, T11, T12, T13, T14, System.ValueTuple<T15, T16, T17, T18, T19, T20, T21>>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9, T10, T11, T12, T13, T14, System.Tuple<T15, T16, T17, T18, T19, T20, T21>>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3> ToValueTuple<T1, T2, T3>(this System.Tuple<T1, T2, T3> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4> ToValueTuple<T1, T2, T3, T4>(this System.Tuple<T1, T2, T3, T4> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5> ToValueTuple<T1, T2, T3, T4, T5>(this System.Tuple<T1, T2, T3, T4, T5> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6> ToValueTuple<T1, T2, T3, T4, T5, T6>(this System.Tuple<T1, T2, T3, T4, T5, T6> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> ToValueTuple<T1, T2, T3, T4, T5, T6, T7>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8>> value) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8, T9>> ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>(this System.Tuple<T1, T2, T3, T4, T5, T6, T7, System.Tuple<T8, T9>> value) { throw null; }
+ }
[System.SerializableAttribute]
public partial class Tuple<T1> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable
{
@@ -5232,6 +5300,167 @@ namespace System
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
[System.SerializableAttribute]
public delegate void UnhandledExceptionEventHandler(object sender, System.UnhandledExceptionEventArgs e);
+ public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple>, System.IEquatable<System.ValueTuple>
+ {
+ public int CompareTo(System.ValueTuple other) { throw null; }
+ public static System.ValueTuple Create() { throw null; }
+ public static System.ValueTuple<T1> Create<T1>(T1 item1) { throw null; }
+ public static System.ValueTuple<T1, T2> Create<T1, T2>(T1 item1, T2 item2) { throw null; }
+ public static System.ValueTuple<T1, T2, T3> Create<T1, T2, T3>(T1 item1, T2 item2, T3 item3) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4> Create<T1, T2, T3, T4>(T1 item1, T2 item2, T3 item3, T4 item4) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5> Create<T1, T2, T3, T4, T5>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6> Create<T1, T2, T3, T4, T5, T6>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> Create<T1, T2, T3, T4, T5, T6, T7>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null; }
+ public static System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple<T8>> Create<T1, T2, T3, T4, T5, T6, T7, T8>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1>>, System.IEquatable<System.ValueTuple<T1>>
+ {
+ public T1 Item1;
+ public ValueTuple(T1 item1) { throw null;}
+ public int CompareTo(System.ValueTuple<T1> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2>>, System.IEquatable<System.ValueTuple<T1, T2>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public ValueTuple(T1 item1, T2 item2) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3>>, System.IEquatable<System.ValueTuple<T1, T2, T3>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public ValueTuple(T1 item1, T2 item2, T3 item3) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3, T4> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3, T4>>, System.IEquatable<System.ValueTuple<T1, T2, T3, T4>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public T4 Item4;
+ public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3, T4> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3, T4> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3, T4, T5> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3, T4, T5>>, System.IEquatable<System.ValueTuple<T1, T2, T3, T4, T5>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public T4 Item4;
+ public T5 Item5;
+ public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3, T4, T5> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3, T4, T5> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3, T4, T5, T6> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3, T4, T5, T6>>, System.IEquatable<System.ValueTuple<T1, T2, T3, T4, T5, T6>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public T4 Item4;
+ public T5 Item5;
+ public T6 Item6;
+ public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3, T4, T5, T6, T7> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>>, System.IEquatable<System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>>
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public T4 Item4;
+ public T5 Item5;
+ public T6 Item6;
+ public T7 Item7;
+ public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial struct ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable<System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>>, System.IEquatable<System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>> where TRest : struct
+ {
+ public T1 Item1;
+ public T2 Item2;
+ public T3 Item3;
+ public T4 Item4;
+ public T5 Item5;
+ public T6 Item6;
+ public T7 Item7;
+ public TRest Rest;
+ public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, TRest rest) { throw null;}
+ public int CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> other) { throw null; }
+ public override bool Equals(object obj) { throw null; }
+ public bool Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> other) { throw null; }
+ public override int GetHashCode() { throw null; }
+ int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; }
+ bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; }
+ int System.IComparable.CompareTo(object other) { throw null; }
+ public override string ToString() { throw null; }
+ }
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
[System.SerializableAttribute]
public abstract partial class ValueType
@@ -7189,7 +7418,7 @@ namespace System.Diagnostics.Tracing
public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level) { }
public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords matchAnyKeyword) { }
public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords matchAnyKeyword, System.Collections.Generic.IDictionary<string, string> arguments) { }
- protected static int EventSourceIndex(System.Diagnostics.Tracing.EventSource eventSource) { throw null; }
+ public static int EventSourceIndex(System.Diagnostics.Tracing.EventSource eventSource) { throw null; }
protected internal virtual void OnEventSourceCreated(System.Diagnostics.Tracing.EventSource eventSource) { }
protected internal virtual void OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs eventData) { }
}
@@ -8541,6 +8770,7 @@ namespace System.IO
{
public DirectoryInfo(string path) { }
public override bool Exists { get { throw null; } }
+ public override string FullName { get { throw null; } }
public override string Name { get { throw null; } }
public System.IO.DirectoryInfo Parent { get { throw null; } }
public System.IO.DirectoryInfo Root { get { throw null; } }
@@ -13265,6 +13495,11 @@ namespace System.Runtime.CompilerServices
[System.Security.SecurityCriticalAttribute]
public void UnsafeOnCompleted(System.Action continuation) { }
}
+ public sealed partial class TupleElementNamesAttribute : System.Attribute
+ {
+ public TupleElementNamesAttribute(string[] transformNames) { }
+ public System.Collections.Generic.IList<string> TransformNames { get { throw null; } }
+ }
[System.AttributeUsageAttribute((System.AttributeTargets)(5148), Inherited=false, AllowMultiple=false)]
public sealed partial class TypeForwardedFromAttribute : System.Attribute
{
@@ -15197,6 +15432,7 @@ namespace System.Runtime.InteropServices
LPStr = 20,
LPStruct = 43,
LPTStr = 22,
+ LPUTF8Str = 48,
LPWStr = 21,
R4 = 11,
R8 = 12,