Sha256: 807623158fbd3c3adc66f580d0041898cf96f455e5b1b46295be7fdcf05b3d0c
Contents?: true
Size: 1.14 KB
Versions: 35
Compression:
Stored size: 1.14 KB
Contents
# Copyright 2016 Matt Wrock <matt@mattwrock.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module WinRM module PSRP module MessageData # session capability message type class SessionCapability < Base def protocol_version clixml[:version].select { |v| v.attributes['N'] == 'protocolversion' }.first end def ps_version clixml[:version].select { |v| v.attributes['N'] == 'PSVersion' }.first end def serialization_version clixml[:version].select { |v| v.attributes['N'] == 'SerializationVersion' }.first end end end end end
Version data entries
35 entries across 26 versions & 2 rubygems