Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed some more typos
Browse files Browse the repository at this point in the history
mtx500 committed Dec 12, 2024
1 parent b14b65e commit 2564984
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Libraries/Opc.Ua.Client/Session/ISession.cs
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ public interface ISession : ISessionClient
/// Raised when a publish request is about to acknowledge sequence numbers.
/// </summary>
/// <remarks>
/// If the client chose to defer acknowledge of sequence numbers, it is responsible
/// If the client chooses to defer acknowledge of sequence numbers, it is responsible
/// to transfer these <see cref="SubscriptionAcknowledgement"/> to the deferred list.
/// </remarks>
event PublishSequenceNumbersToAcknowledgeEventHandler PublishSequenceNumbersToAcknowledge;
2 changes: 1 addition & 1 deletion Libraries/Opc.Ua.Client/Session/Session.cs
Original file line number Diff line number Diff line change
@@ -6874,7 +6874,7 @@ public PublishSequenceNumbersToAcknowledgeEventArgs(
/// The acknowledgements which are sent with the next publish request.
/// </summary>
/// <remarks>
/// A client may also chose to remove an acknowledgement from this list to add it back
/// A client may also choose to remove an acknowledgement from this list to add it back
/// to the list in a subsequent callback when the request is fully processed.
/// </remarks>
public SubscriptionAcknowledgementCollection AcknowledgementsToSend => m_acknowledgementsToSend;
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ public interface IApplicationConfigurationBuilder :
};

/// <summary>
/// The client or server configuration types to chose.
/// The client or server configuration types to choose.
/// </summary>
public interface IApplicationConfigurationBuilderTypes :
IApplicationConfigurationBuilderTransportQuotas,
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ public static void ReportCertificateDeliveredAuditEvent(
/// <param name="method">The method that triggered the audit event.</param>
/// <param name="inputArguments">The input arguments used to call the method that triggered the audit event.</param>
/// <param name="certificateGroupId">The id of the certificate group</param>
/// <param name="certificateTypeId">the certificate ype id</param>
/// <param name="certificateTypeId">the certificate type id</param>
/// <param name="exception">The exception resulted after executing the StartNewKeyPairRequest StartNewSigningRequest method. If null, the operation was successfull.</param>
public static void ReportCertificateRequestedAuditEvent(
this IAuditEventServer server,
Original file line number Diff line number Diff line change
@@ -135,7 +135,7 @@ The value 0 is used to indicate that no version information is available.*/
}

/// <summary>
/// Check if the DataSetMetData is usable for decoding.
/// Check if the DataSetMetaData is usable for decoding.
/// It shall be not null and have the Fields collection defined and also the ConfigurationVersion shall be not null or Empty
/// </summary>
/// <param name="dataSetMetaData"></param>
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@
namespace Opc.Ua.PubSub
{
/// <summary>
/// Class that contains data related to DatasetWriterConfigurationReceived event
/// Class that contains data related to DataSetWriterConfigurationReceived event
/// </summary>
public class DataSetWriterConfigurationEventArgs : EventArgs
{
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ UaNetworkMessage CreatePublisherEndpointsNetworkMessage(EndpointDescription[] en
/// <summary>
/// Create and return the list of DataSetWriterConfiguration response message
/// </summary>
/// <param name="dataSetWriterIds">DatasetWriter ids</param>
/// <param name="dataSetWriterIds">DataSetWriter ids</param>
/// <returns></returns>
IList<UaNetworkMessage> CreateDataSetWriterCofigurationMessage(UInt16[] dataSetWriterIds);

Original file line number Diff line number Diff line change
@@ -237,7 +237,7 @@ internal static X9ECParameters GetX9ECParameters(ECParameters ecParams)
}

/// <summary>
/// Identifies a named curve by the provided coeficients A and B from their first 4 bytes
/// Identifies a named curve by the provided coefficients A and B from their first 4 bytes
/// </summary>
/// <param name="a"></param>
/// <param name="b"></param>
2 changes: 1 addition & 1 deletion Libraries/Opc.Ua.Server/Diagnostics/AuditEvents.cs
Original file line number Diff line number Diff line change
@@ -1014,7 +1014,7 @@ public static void ReportAuditTransferSubscriptionEvent(
/// <param name="method">The method that triggered the audit event.</param>
/// <param name="inputArguments">The input arguments used to call the method that triggered the audit event.</param>
/// <param name="certificateGroupId">The id of the certificate group</param>
/// <param name="certificateTypeId">the certificate ype id</param>
/// <param name="certificateTypeId">the certificate type id</param>
/// <param name="exception">The exception resulted after executing the UpdateCertificate method. If null, the operation was successfull.</param>
public static void ReportCertificateUpdatedAuditEvent(
this IAuditEventServer server,
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ public int MaxChannelCount

/// <summary>
/// Indicates if Http listener requires mutual TLS
/// Handled only by HttpsTransportListner
/// Handled only by HttpsTransportListener
/// In case true, the client should provide it's own valid TLS certificate to the TLS layer for the connection to succeed.
/// </summary>
public bool HttpsMutualTls
8 changes: 4 additions & 4 deletions Stack/Opc.Ua.Core/Types/Utils/ReadOnlyList.cs
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ public class ReadOnlyList<T> : IList<T>, IList
{
#region ICollection<T> Members
/// <summary>
/// Wraps an exising list.
/// Wraps an existing list.
/// </summary>
public ReadOnlyList(IList<T> list)
{
@@ -36,7 +36,7 @@ public ReadOnlyList(IList<T> list)
}

/// <summary>
/// Makes a shallow copy of an exising list.
/// Makes a shallow copy of an existing list.
/// </summary>
public ReadOnlyList(IList<T> list, bool makeCopy)
{
@@ -68,15 +68,15 @@ public ReadOnlyList(IList<T> list, bool makeCopy)
public int Count => m_list.Count;

/// <summary>
/// Adds new item to the list (not supported).
/// Adds new item to the list (not supported).
/// </summary>
public void Add(T item)
{
throw new NotSupportedException();
}

/// <summary>
/// Removes all item from the list (not supported).
/// Removes all items from the list (not supported).
/// </summary>
public void Clear()
{

0 comments on commit 2564984

Please sign in to comment.